@charset "UTF-8";
/* CSS Document */

.container-hero {
    width: 100%;
    height: 100vh;
}

.section-text-p {
    font-size: 1rem;
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 1.875rem;
    text-align: left;
    color: #111;
    margin-top: 1.875rem;
}
.portfolio-n {
    max-width: 50%; 
    height: auto;
    object-fit: cover;
    display: block; 
    margin: 0 auto; 
}


.portfolio-hb {
    max-width: 60%; 
    height: auto;
    object-fit: cover;
    display: block; 
    margin: 0 auto; 
}

.portfolio-n1 {
    max-width: 70%; 
    height: auto;
    object-fit: cover;
    display: block; 
    margin: 0 auto; 
}



@media (max-width: 480px) {
    .portfolio-hb {
        max-width: 100%; /* ocupa el 100 % del contenedor en móvil */
    }
}

/* Estilos para móviles */
@media (max-width: 768px) {
    .portfolio-n {
        max-width: 100%;
    }
	

}

@media (max-width: 768px) {
    .portfolio-n1 {
        max-width: 100%;
    }
	

}
/* Overlay oscuro semitransparente */
.parallax-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5); 
    z-index: 1;
}

	
/* Contenido encima del overlay */
.content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Centrado de texto */
.home-content {
    text-align: center;
    color: #fff;
    padding: 2rem;
}

/* Estilos de los títulos */
.home-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.home-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
	font-weight: 500;
}

 h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    margin-top: 30px;
	color: #3d3d3d;
}
	
	@media (max-width: 768px) {
  .home-content {
    padding: 1.5rem;
  }

  .home-content h1 {
    font-size: 2.5rem;
  }

  .home-content h2 {
    font-size: 1.4rem;
	 margin-bottom: -1.5rem; 
  }
}
/* Flecha animada */
.arrow-btn {
    font-size: 2rem;
    color: #fff;
    display: inline-block;
    animation: bounce 2s infinite;
}

/* Animación de rebote */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}
.arrow-btn {
    font-size: 2rem;
    color: #fff;
    display: inline-block;
    margin-top: 2rem;
    animation: bounce 2s infinite; 
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}
	
.section-title-p {
    margin-top: 20px;
    font-size: 1.6rem;
    position: relative;
    font-weight: 600;
    text-align: left;
    color: #3D3D3D;
}	

.linea {
  position: relative;
  height: 3px;
  margin: 0px 0px 20px 0px;
}



.linea::before {
  position: absolute;
  content: "";
  height: 3px;
  width: 25px; 
  top: 50%;
  background: #c9b38c; 
  transform: translateY(-50%);
}

.linea::after {
  position: absolute;
  content: "";
  width: 3px; 
  height: 3px; 
  top: 50%;
  left: 30px; 
  background: #c9b38c; 
  transform: translateY(-50%);
}




/* Quote */

.quote-container {
  max-width: 900px;
  margin: 2rem auto; 
  padding: 2rem;
  background: #fff;
  border-left: 6px solid #c9b38c;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  position: relative;
}

.quote-container::before {
font-family: "FontAwesome";
    content: "\f10d";
    font-size: 3.5rem;
    color: #cab38c9e;
    position: absolute;
    top: -40px;
    left: 20px;
}

blockquote {
    color: #111;
    padding-left: 2.5rem;
    font-size: 1rem;
    line-height: 1.9;
	font-weight: 300;
	font-style: italic;
}

cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #cab38c;
  padding-left: 2.5rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .quote-container {
    padding: 1.5rem;
  }

  blockquote {
    font-size: 1rem;
    padding-left: 2rem;
	line-height: 1.5rem;
	  margin-top: 10px;
  }

  cite {
    padding-left: 2rem;
    font-size: 0.9rem;
	
  }

  .quote-container::before {
    left: 15px;
  }
}



 /* Card Blog */	
/* Por defecto, se muestra la imagen de desktop y se oculta la de móvil */
.desktop-only {
  display: block;
  max-width: 100%;

}

.mobile-only {
  display: none;
}

/* En pantallas pequeñas, se oculta la imagen de desktop y se muestra la de móvil */
@media (max-width: 600px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
	 width: 100%;
  }
}
	
.testimonial-text {
  border: 1px solid #ccc;  
  border-radius: 8px;        
  padding: 1rem;            
}

/* Bloque meta de la entrada */
.blog-meta {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  margin: 0;
      color: #8e8a8a;
  margin-bottom: 20px;
      margin-top: 10px;
}

.blog-meta p {
  margin: 0;
  align-items: center;
  
}

.blog-meta p i {
  margin-right: 0.75rem; /* Espaciado entre el icono y el nombre */
  font-size: 1.2em;
  
 
}

/* Título de la tarjeta */
.titulo-card {
  font-size: 1.2rem;
  margin-top: 5px;
  margin-bottom: 0.6rem;
  font-weight: 600;
  color: #3d3d3d 
}

.subtitulo-card {
  font-size: 1rem;
  margin-top: 20px;
  margin-bottom: 0.6rem;
  font-weight: 600;
  color: #3d3d3d 
}

/* Media query para dispositivos con pantallas pequeñas */
@media (max-width: 600px) {
  .blog-meta {
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
  }
}

/* Estilos del botón con tamaño reducido */
.btn {
  display: inline-block;
  background-color: #3d3d3d;
  color: #fff;
  padding: 0.3rem 0.6rem;      
  text-decoration: none;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  font-weight: 500;
  ont-size: 0.9rem;
     margin-bottom: 20px;
   
}

.btn:hover {
  background-color: #5a5a5a; 
  transform: scale(1.05);    
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); 
}




video {
  display: block;
  max-width: 100%;
  
}



/* lista ordenada */
.portfolio-list {
  list-style: none;      
  margin: 0;
  padding: 0;
	height: auto;
	padding-left: 30px;
}

.portfolio-item {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.75em;
  font-size: 1rem;
  color: #111;
}

.portfolio-item {
  
    display: block;
}

/* añadimos el “bullet” grande y al lado del texto */
.portfolio-item::before {
  content: '●';
  position: absolute;
  left: 0;
  top: 0.2em;
  font-size: 1.2em;
  color: #3d3d3d;        
  line-height: 1;
}

/* Estilos específicos para móvil */
@media (max-width: 480px) {
    .portfolio-item::before {
          top: 1em;
        font-size: 0.5em;
    }
}

.section-text p{
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #111;
}
/* reinicia el contador */
.numbered {
  counter-reset: portfolio-counter;
}

/* cada ítem incrementa y reserva espacio */
.numbered .portfolio-item {
  counter-increment: portfolio-counter;
  position: relative;
  margin-bottom: 0.75em;
  
}

/* inyecta el número y fija su cajita */
.numbered .portfolio-item::before {
  content: counter(portfolio-counter) ".";
  position: absolute;
  left: 0;

  width: 2.5em;             
  font-size: 1.1em;
    font-weight: 600;
  color: #3d3d3d;
  line-height: 1.2;
top: 2px;
}

/* opcional: si quieres estilo específico a la línea secundaria */
.subtext {
  margin-top: 0.3em;
  /* al no tener padding-left propio, hereda el indentado del li */
}
.first-word {
      font-weight: 600;
    color: #3d3d3d;
}
	

/* Flecha ver proyectos */		
.view-page {
	
  margin-left: 6px;
  font-weight: 600;
  color: #3d3d3d;
  text-decoration: none;
  display: inline-flex; 
  align-items: center;   
  gap: 8px;
  transition: all 0.3s ease;
}

.view-page::after {
  content: "→";
  
  line-height: 1;
  transition: transform 0.3s ease;

}

.view-page:hover::after {
  transform: translateX(6px);

  text-decoration: none;
}


.view-page:hover {
  background-color: transparent;
}
/* Diagrama */
		
.mini-diagram {
  text-align: center;
  margin: 60px auto;
  max-width: 600px;
}

.mini-diagram h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #1f2937;
}

.block {
  border: 2px dashed #9ca3af;
  padding: 16px 20px;
  margin: 12px auto;
  border-radius: 8px;
  background-color: #fff;
  font-weight: 500;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.03);
}

.mini-diagram .arrow {
  font-size: 1.5rem;
  color: #9ca3af;
  margin: 6px 0;
  animation: bounceArrow 1.2s infinite alternate;
}

@keyframes bounceArrow {
  from { transform: translateY(0); }
  to { transform: translateY(5px); }
}


