/* html {
    background-color: #d2a76c;
} */

/*
   Estilos específicos para reseñas.html
   La mayoría de estilos se heredan de estilo.css
*/

#reseñas h1 {
    color: #143642;
    text-align: center;
    margin-bottom: 1rem;
}

/* El resto de estilos (grid, cards, footer) ya están en estilo.css */

.testimonials {
    padding: 2rem 1rem 3rem;
    max-width: 1150px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.7rem;
    margin-top: 1.5rem;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 1.4rem 1.6rem;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(20, 54, 66, 0.06);
}

.testimonial-text {
    font-size: 0.95rem;
    color: #4a5565;
    margin-bottom: 1rem;
}

.testimonial-name {
    font-size: 1rem;
    color: #143642;
    margin: 0;
}

.testimonial-role {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
}

.footer-inner {
    max-width: 1150px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.85rem;
    color: #6b7280;
    text-align: center;
}

.footer-logo {
    height: 40px;
    width: auto;
    display: block;
}
/* ===== Ajustes para móvil ===== */
@media (max-width: 768px) {

  /* CABECERA / NAV */
  header {
    padding: 0.5rem 1rem;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }

  /* Ocultar el texto del logo en móvil para ahorrar espacio */
  .logo {
    display: none;
  }

  .nav>a img {
    max-height: 40px;
    width: auto;
  }

  nav {
    display: flex;
    gap: 0.8rem;
    font-size: 0.9rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* HERO */
  .hero {
    min-height: calc(100vh - 120px);
    padding: 2rem 1rem;
    background-position: center top;
    background-attachment: scroll;
    flex-direction: column;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-text {
    font-size: 0.95rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  /* CARDS SERVICIOS */
  .service-card,
  .service-card.invert {
    flex-direction: column;
    padding: 1.6rem;
  }

  .card-image img {
    max-height: none;
  }

  /* TESTIMONIOS */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* CONTACTO */
  .bloque {
    grid-template-columns: 1fr;
  }
}