:root {
  --bg: #fdf9f5;
  --light: rgb(232, 202, 132);
  --accent: #D1973B;
  --dark: #051016;
  --gray: rgb(113, 119, 123);
  --blue: #17394c;
}

/* --------------------------------------1) ESTILOS POR DEFECTO: MÓVIL (0–599px)-------------------------------------- */
* {
  margin: 0; padding: 0; box-sizing: border-box;
}
body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.5;
}

/* Titulares + botones */
h1, h2, h3, .btn, 
.button, .btn-equip  {
  font-family: 'Cinzel Decorative', serif;
}
p, a {
  font-family: 'Aileron', sans-serif;
}

/* NAV */
/* 1) Estado “oculto” global (para <600px): nav, hero-title, hero-bottom y tarjetas */
nav,
.hero-title,
.hero-bottom {
  opacity: 0;
  transform: translateY(30px); /* nav será translateY(-30px) más adelante con un override */
  transition: none;
}
nav {
  background: var(--bg);
  position: fixed;
  width: 100%;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(-30px);
      transition: none; /* quitamos transiciones por defecto */
}
  nav.visible {
    animation: slideDownFade 0.6s ease-out forwards;
  }
  
@keyframes fadeInNav {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDownFade {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
nav .container {
  margin: 0 auto;
  display: flex;   /* quita la limitación de ancho */
  padding: 0 1rem;      /* espacio a los costados */
  align-items: center;
  justify-content: space-between;
}

.logo img {
  max-height: 90px; /* o el tamaño que quieras */
  width: auto;
  display: block;
}

/* toggle VISIBLE en móvil */
.nav-toggle {
  display: block;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--dark);
  cursor: pointer;
}

/* links ocultos por defecto */
.nav-links {
  display: none;
  list-style: none;
}
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  right: 1rem;
  left: auto;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 1rem;
  z-index: 1001;
  box-sizing: border-box;
}
.nav-links a {
  color: var(--dark);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: border-color 0.2s;
}
.nav-links a:hover {
  border-bottom: 1px solid var(--blue);
}
/*CODIGOS PARA TENES EL TEXTO RECTO AL FINAL, O SEA, SIN JUSTIFICAR*/
.hero-bottom p,
.faq-answer p,
.testimonial-text,
.equipo-texto p,
.servicio-texto p,
.servicio-texto li,
.contacto-derecha p,
.faq-item .faq-question {
  text-align: justify;        /* justifica todas las líneas */
  text-align-last: left;      /* última línea alineada a la izquierda */
  text-justify: inter-word;   /* expande espacios entre palabras */
  hyphens: auto;              /* permite guiones en cortes */
}

/* HERO */
.hero {
  background: url('anasiracusa.png');
  background-size: cover;       /* para que escale y cubra */
  background-position: center;   /* centra la parte importante */
  box-sizing: border-box;
  height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 77px;
}
@keyframes fadeInHero {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.hero-content {
  flex: 1;
  display: flex;
  text-align: left;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  width: 100%;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  animation: fadeInUp 2s ease-out forwards;
  animation-delay: 0.4s; /* demoras opcional */
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-title {
  font-size: 2rem;
  text-align: left;
  color: var(--bg);
  margin-bottom: 0.5rem;
  text-shadow:
    0 0 4px rgba(0,0,0,1),
    0 0 10px rgba(0,0,0,0.8);
      opacity: 0;
  transform: translateY(30px);
    transition: none;
}
.hero-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-align: left;
  font-size: 1.2rem;
  color: var(--bg);
  font-weight: 600;
  background: rgba(0, 0, 0, 0.301);
  backdrop-filter: blur(15px);  /* opcional: difumina un poco la imagen */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  padding: 1.5rem;
  border-radius: 0.5rem;
  opacity: 0;
  transform: translateY(30px);
    transition: none;
}
.hero-title.visible {
  animation: fadeInUp 0.6s ease-out forwards;
}

.hero-bottom.visible {
  animation: fadeInUp 0.6s ease-out forwards;
}
.hero-bottom h2, h3, p {
  color: rgb(212, 218, 223);
  text-shadow:
    0 0 2px rgba(0, 0, 0, 0.349),
    0 0 2px rgba(0, 0, 0, 0.212);
}
.btn {
  display: block;
  text-align: center;
  background: #e7e3e3;
  color: var(--blue);
  padding: 1rem;
  margin: 0 auto;
  width: 80%;
  font-size: 1rem;
  border-radius: 0.25rem;
  text-decoration: none;
  font-weight: bold;
    text-shadow:
    0 0 1px rgba(0,0,0,1),
    0 0 2px rgba(0,0,0,0.8);
    transition: transform 0.4s ease-in-out;
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.4));
}
.btn:hover {
  background: var(--bg);
  transform: scale(1.1);
  filter: drop-shadow(0 8px 16px rgba(255, 252, 252, 0.4));
}
/*keyframes para animacion de nav+hero en mobile*/
@keyframes slideDownFade {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* SECCIÓN NUESTRO EQUIPO */
.equipo {
  background: url('serviciosfondo.png') center center / cover no-repeat;
  /* si quieres que ocupe siempre al menos toda la ventana: */
  min-height: 100vh;
  /* para que el contenido interno siga respetando su padding */
  padding: 4rem 2rem;
  box-sizing: border-box;
}
.equipo-container {
  display: flex;
  flex-direction: column;
  padding: 0 2rem;
  gap: 2rem;
  max-width: 100%;       /* nunca más ancho que el viewport */
  margin: 0 auto;
}
.equipo-imgs .img-combined {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto 1rem;
  border-radius: 0.25rem;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.2));
}
.btn-equip {
  display: block;
  font-size: 1.3rem;
  padding: 1.5rem;
  background: transparent;
  border: 1px solid;
  color: #fff;
  border-radius: 0.25rem;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  transition: background 0.4s ease;
  transition: transform 0.2s ease-in-out;
}
.btn-equip:hover {
  background: var(--bg);
  color: var(--blue);
  transform: scale(1.1);
}
.equipo-texto {
  max-width: 800px;
  text-align: center;
  position: relative;
  padding: 1rem 0 1rem 0;
  color: var(--bg);
    text-shadow:
      0 0 1px rgba(0,0,0,1),
      0 0 2px rgba(0,0,0,0.2);
}

.equipo-texto h2 {
  font-size: 2rem;
  color: var(--bg);
  margin-bottom: 1rem;
}

/* Truncamiento inicial: 3 líneas con puntos suspensivos */
.clamp-text {
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
}

/* Botón “Ver más” */
.btn-vermas {
  margin-top: 1rem;
  background: transparent;
  border: 1.5px solid;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.25rem;
  cursor: pointer;
}
.btn-vermas:hover {
  background: var(--dark);
}

/* Cuando expandas el texto, quitamos el clamp */
.clamp-text.expanded {
  -webkit-line-clamp: unset;
  overflow: visible;
}

/*SECCION SERVICIOS*/
#servicios,
.servicios-container {
  overflow-x: hidden;
}
#servicios {
  background: var(--blue);
  min-height: 100vh;
  padding: 4rem 2rem;
  box-sizing: border-box;
  color: var(--dark);
}

.servicios-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.servicios-titulo {
    text-align: center;        /* centra el texto */
  font-size: 2.5rem;         /* ajusta el tamaño a tu gusto */
  margin-bottom: 2rem;       /* espacio abajo antes de las columnas */
  color: var(--bg);        /* o el color que uses para títulos */
  font-weight: 600;          /* un poco de énfasis */
}

.servicios-col h2 {
  font-family: 'Cinzel Decorative', serif;
  color: var(--bg);
  margin-bottom: 1rem;
}

/* 2) Tarjetas */
.servicio-card {
  display: flex;
  flex-direction: column;
  align-items: center;
    /* vidrio: fondo semi-transparente + blur */
  background: rgba(255, 255, 255, 0.445);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: none;
  opacity: 0;
  margin-bottom: 1rem;
  padding: 1rem;
}

.servicio-card img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 0.2rem;
  margin-top: 3rem;
}

.servicio-texto {
  padding: 2rem 1.5rem;
  text-align: center;
}

.servicio-texto h3 {
  margin: 0 0 0.5rem;
  font-family: 'Cinzel Decorative', serif;
  color: var(--accent);
  text-align: center;
}

.servicio-texto p {
  margin: 0;
  font-family: 'Aileron', sans-serif;
  color: var(--dark);
}

#servicios {
    padding: 1rem;
  }
  /* 3. Clases “animar” que disparan los keyframes */
  .servicio-card.animate-left {
    animation: slideInLeft 1s ease-out forwards;
  }
  .servicio-card.animate-right {
    animation: slideInRight 1s ease-out forwards;
  }

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-70px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(70px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/*---------------------------------CONTACTO SECCION------------------------------------*/
.contacto-container {
  width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
  margin: 0 auto;
}
.contacto {
  background: var(--blue);
  color: var(--bg);
  padding: 4rem 1rem;
  text-align: center;
}
.contacto h2 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}
.contacto-top {
  display: block;
  font-size: 1.1rem;
}
/* Columnas de datos */
.contacto-info {
  box-sizing: border-box;
  padding: 1rem;
}

.contacto-info .contacto-derecha {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto auto;
  grid-gap: 1rem;
}
.contacto-derecha .full {
  grid-column: 1 / -1;
}
.contacto-derecha .half {
  grid-column: span 1;
}
.contacto-derecha .full:last-of-type {
  grid-column: 1 / -1;
}
.contacto-derecha .end {
  grid-column: 1 / -1;
  font-weight: bold;
  font-size: 1.7rem;
  font-family: 'Cinzel Decorative', serif;
}
/* Mapa embebido */
.contacto-top .mapa iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
  margin: 0 auto 2rem;
}

/* Botones de acción */
.contacto-botones {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.contacto-botones .btn {
  font-family: 'Cinzel Decorative', serif;
  padding: 1rem;
  border: 2px solid var(--bg);
  border-radius: 0.5rem;
  color: var(--bg);
  background: transparent;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s, transform 0.3s;
}

.contacto-botones .btn:hover {
  background: var(--bg);
  color: var(--blue);
  transform: scale(1.05);
}
.btn-instagram {
  font-size: 2.5rem;
  color: var(--bg);
  text-decoration: none;
}

/*-----------------------------FAQS SECCION-----------------------------------------*/
/* Contenedor general */
.faqs {
  padding: 4rem 1rem;
  text-align: center;
  background: var(--bg);
  color: #051016;
}

/* Título centrado */
.faqs__titulo {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--light);
  text-shadow:
    transition: transform 0.4s ease-in-out;
    filter: drop-shadow(0 4px 12px rgba(232, 202, 132, 0.5));
}

/* Cada ítem */
.faq-item {
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid var(--light);
  text-shadow: #051016;
}

/* Botón de pregunta */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 2.5rem 1rem;
  font-size: 1.4rem;
  font-family: inherit;
  color: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* Icono (flecha) */
.faq-icon {
  transition: transform 0.3s ease;
}

/* Respuesta oculta por defecto */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  text-align: left;
}
.faq-answer p {
  color: #051016;
}

/* Cuando está abierto… */
.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-item.open .faq-answer {
  max-height: 500px; /* suficiente para mostrar tu texto */
  padding-bottom: 1rem;
}

/*FOOTER SECTION*/
.footer {
  background-color: var(--bg);
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.9rem;
  color: #333;
  border-top: 1px solid #e0e0e0;
}

.footer p {
  margin: 0.25rem 0;
  color: #051016;
}

.footer-link {
  color: #25d366;              /* verde WhatsApp */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #1ebe5c;
}

/*FLOTANTE WHATSAPP*/
.whatsapp-flotante {
  position: fixed;
  bottom: 1rem;
  right: 1rem;           /* antes era left: 1rem */
  width: 3.5rem;
  height: 3.5rem;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.8rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.whatsapp-flotante:hover {
  background-color: #1ebe5c;
  transform: scale(1.1);
}

/*TESTIMONIOS*/
.testimonios {
  padding: 4rem 1rem;
  background: var(--bg-light); /* o el color de fondo que uses */
}

.testimonios-titulo {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  text-shadow:
    0 0 1px rgba(0,0,0,1),
    0 0 2px rgba(0,0,0,0.8);
}

.testimonials-content {
  display: flex;
  justify-content: flex-start;
  flex-direction: column; /* En móvil: “perfil” arriba, reseñas abajo */
  gap: 2rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Bloque “perfil” del lugar (a la izquierda) */
.place-profile {
  flex: 0 0 auto;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  gap: 1rem;
  margin: 1.5rem auto;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
}

/* Foto/ícono del local */
.place-profile img {
  width: 120px;
  height: 120px;
  border-radius: 0.5rem;
  object-fit: cover;
  background: #f0f0f0;
  margin-bottom: 1rem;
}

/* Contenedor de texto con nombre y rating */
.place-profile .place-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.place-profile .place-name {
  font-size: 1.4rem;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.place-profile .place-rating {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  color: #f1c40f; /* color de las estrellas */
  margin-bottom: 0.5rem;
  justify-content: center;
}

.place-profile .place-rating span {
  margin-left: 0.5rem;
  font-size: 0.95rem;
  color: #7f8c8d;
}

.place-profile .place-link {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #1a73e8;
  text-decoration: none;
}
.place-link:hover {
  text-decoration: underline;
}
.place-profile:hover {
    transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Tarjeta individual de cada reseña */
.reviews-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* alinea las tarjetas al inicio del contenedor */
  gap: 1.5rem;
  width: 100%;
  overflow-x: visible;
}
.review-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  max-width: 300px;
  flex: 1 1 280px;      /* ancho mínimo 280px, se adapta */
  height: 290px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

}
/* Efecto hover en cada tarjeta */
.review-card:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* Encabezado con autor y fecha */
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: Arial, sans-serif;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #333;
}
.review-time {
  font-size: 0.8rem;
  color: #666;
}

/* Estrellas de calificación */
.review-rating {
  color: #f1c40f;       /* color dorado para las estrellas */
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* Texto de la reseña */
.review-text {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 1rem;
  line-height: 1.4;
  overflow-y: auto;
}

/* Enlace a la reseña completa en Google */
.review-link {
  text-decoration: none;
  color: #1a73e8;
  font-weight: bold;
  font-size: 0.9rem;
  margin-top: auto;
}
.review-link:hover {
  text-decoration: underline;
}






/* --------------------------------------2) NAV A PARTIR DE 600px: Tablet + Desktop-------------------------------------- */
@media (min-width: 600px) {
    /* Nav siempre visible HERO Y SERVICIOS. ANIMACION PARA QUE ANDE EN MOBILE*/
  nav {
    opacity: 1 !important;
    transform: none !important;
  }
  /* Hero siempre visible */
  .hero-title,
  .hero-bottom {
    opacity: 1 !important;
    transform: none !important;
  }

  .container {
    justify-content: space-between; /* logo a la izquierda, menú a la derecha */
    padding: 0 2rem;                /* opcional: un poquito de padding lateral */
  }
  /* ocultar toggle y mostrar siempre enlaces */
  .nav-toggle {
    display: none;
  }
  .nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    width: auto;
    flex: 0 1 auto;
    list-style: none;
    margin-left: auto;
    margin: 0;
    background: transparent;
    box-shadow: none;
  }
  .nav-links.open {
    /* ya no hace falta override */
    position: static;
    box-shadow: none;
  }
  .nav-links a {
    padding: 0 1rem;
    border: none;
  }
/*CODIGOS PARA TENES EL TEXTO RECTO AL FINAL, O SEA, SIN JUSTIFICAR*/
.hero-bottom p,
.faq-answer p,
.testimonial-text,
.equipo-texto p,
.servicio-texto p,
.contacto-derecha p,
.faq-item .faq-question {
  text-align: justify;        /* justifica todas las líneas */
  text-align-last: left;      /* última línea alineada a la izquierda */
  text-justify: inter-word;   /* expande espacios entre palabras */
  hyphens: auto;              /* permite guiones en cortes */
}
/* --------------------------------------3) HERO A PARTIR DE 600px: Tablet + Desktop-------------------------------------- */
  .hero {
    background: url('estudiosiracusa.webp') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: stretch;
  }
  .hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* opcional: controla ancho máximo */
    max-width: auto;
    margin: 0 auto;
    padding: 2rem;
    box-sizing: border-box;
  }
  .hero h1 {
    text-align: left;
    font-size: 4.4rem;
    margin: 0;
  }
  .hero h2 {
    font-size: 2.2rem;
    margin: 0;
  }
  .hero h3{
  text-align: left;
  font-size: 1.4rem;
  color: var(--bg);
  font-weight: 400;
  text-shadow:
    0 0 1px rgba(0,0,0,1),
    0 0 2px rgba(0,0,0,0.8);
  }
  .hero p {
    margin: 0;
    text-align: left;
    font-size: 2rem;
  }

  .hero-bottom {
    max-width: 600px;
    color: var(--bg);
  }
  .btn {
    font-size: 1.4rem;
    align-self: flex-start;
    width: 550px;
    margin: 0;
    margin-bottom: 2rem;
    padding: 1.1rem 2rem;
  }
  .btn:hover {
      background: var(--bg);
  transform: scale(1.05);
  filter: drop-shadow(0 8px 16px rgba(255, 252, 252, 0.4));
  }
/*-------------------4) SECCION NUESTRO EQUIPO A PARTIR DE 600px: Tablet + Desktop-----------------*/

.equipo {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 1rem;
}  
.equipo-container {
  display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    max-width: 1800px;
    margin: 0 auto;
  }
  .equipo-imgs {
    flex: 0 0 40%;
    padding-right: 5rem;
  }
  /* La imagen combinada a la izquierda */
  .img-combined {
    width: 100%;
    height: auto;
    max-width: none;
    margin: 0;            /* quita el auto centrar */
  }
    .equipo-imgs .img-combined {
    width: 100%;
    height: auto;
    max-width: none;
    display: block;
     margin: 5rem auto;
    filter: drop-shadow(0 4px 16px rgba(255, 252, 252, 0.3));
  }
  .btn-equip {
    display: block;
    justify-content: center;
    margin-top: 5rem auto;
    align-items: center;
    margin: 5rem auto;     /* 1rem arriba, auto derecha/izquierda */
    filter: drop-shadow(0 8px 16px rgba(255, 252, 252, 0.4));
  }
  /* El bloque de texto a la derecha, que ocupe el resto */
  .equipo-texto {
    flex: 0 0 56%;
    color: var(--bg);
    text-shadow:
      0 0 1px rgba(0,0,0,1),
      0 0 2px rgba(0,0,0,0.2);
  }
  .equipo-texto h2 {
    font-size: 3rem;
    text-shadow:
      0 0 2px rgb(0, 0, 0),
      0 0 8px rgba(255, 255, 255, 0.8);
  }

  #equipo .clamp-text {
    font-size: 1.2rem;
    text-align: left;
  }
  .btn-vermas {
    display: none;
  }
    /* Mostrar siempre todo el texto */
  .clamp-text {
    -webkit-line-clamp: unset;  /* desactiva el límite de líneas */
    overflow: visible;          /* deja que se expanda */
  }

    /*SECION SERVICIOS*/
  .servicios-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: 5rem;
    padding: 2rem;
    position: relative;
    overflow-x: hidden;
  }
  .servicios-col {
    flex: 0 1 50rem;
  }
  .servicio-card {
    display: flex;
    flex-direction: row;
    max-width: 55rem;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(248, 248, 248, 0.295);
    /* vidrio: fondo semi-transparente + blur */
    background: rgba(255, 255, 255, 0.445);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    /* animación */
    opacity: 0;
    transition: opacity 1.6s ease, transform 1.6s ease, box-shadow 1.6s ease;
  }



  /* control de entrada */
  .slide-left  { transform: translateX(-200px); }
  .slide-right { transform: translateX(200px); }

  /* al hacerse visible */
  .servicio-card.visible {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  .servicio-card img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 0.2rem;
  margin-top: 0;
  margin-left: 1rem;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.411);
}

.servicio-texto {
  text-align: left;
}

.servicio-texto h3 {
  margin: 0 0 0.5rem;
  font-family: 'Cinzel Decorative', serif;
  color: var(--accent);
  text-align: left;
}

.servicio-texto p {
  margin: 0;
  font-family: 'Aileron', sans-serif;
  color: var(--dark);
}

/*-----------------------CONTACTO SECCION DESKTOP------------------------------------*/

  .contacto-container {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 2rem 1rem;
    box-sizing: border-box;
  }
  .contacto-top {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
  }

  .contacto-top .mapa {
    flex: 0 0 45%;           /* el 40% del ancho para el mapa */
    filter: drop-shadow(0 8px 16px rgb(0, 0, 0));
  }
  .contacto-top .mapa iframe {
    width: 100%;
    height: 400px;
  }

  .contacto-top .contacto-info {
    flex: 1;                 /* ocupa el 60% restante */
    display: flex;
    gap: 1rem;
    padding: 3rem;
  }

  .contacto-info .contacto-derecha {
    flex: 1;                 /* dos columnas iguales */
    text-align: left;        /* alineamos el texto a la izquierda */
    font-size: 1.3rem;
  }
.contacto-top .contacto-derecha {
  flex: 1;                   /* cada columna de info igual ancho */
}
  /* centramos los botones pero sin que ocupen todo el ancho */
  .contacto-botones {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 2rem auto;
    padding: 0 1rem;
  }
  .contacto-botones .seguinos {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  /* Estilo del texto “SEGUINOS” */
  .contacto-botones .seguinos h3 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.5rem;
  }
  /* Ajustes puntuales de width para los botones laterales */
  .contacto-botones .btn-llamada,
  .contacto-botones .btn-whatsapp {
    flex: 1;            /* para que ocupen el mismo espacio */
    max-width: 400px;   /* ancho máximo si quieres limitarlo */
  }
  /* El botón de Instagram (icono) puede ser más pequeño */
  .contacto-botones .btn-instagram {
    flex: 0 0 auto;     /* tamaño fijo según su contenido */
    text-decoration: none;
    transition: transform 0.3s;
  }
  .contacto-botones .btn-instagram i {
    font-size: 6rem;
    color: #fff;
  }
  .btn-instagram:hover {
    transform: scale(1.2);
  }
  /*-----------------------------------TESTIMONIOS SECCION-------------------------------------------*/
  .testimonials-content {
   flex-direction: row;
    align-items: center;    /* para centrar perfil verticalmente */
    justify-content: center;
    max-width: 100%;
    padding: 4rem;
    gap: 2rem;
    margin: 0 auto;
    box-sizing: border-box;
  }

  /* Ajustamos ancho del perfil para que sea “más grande” */
  .place-profile {
    flex: 0 0 360px;       /* ancho fijo: 360px (ajústalo a tu gusto) */
    text-align: center;
    padding: 2rem 1.5rem;
    /* Para centrar su contenido verticalmente (si quisieras) */
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  /* Sus contenidos se alinearían a la izquierda */
  .place-profile img {
   width: 180px;          /* imagen más grande en desktop */
    height: 180px;
    border-radius: 0.5rem;
    object-fit: cover;
    margin-bottom: 1rem;
  }
  .place-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .place-rating {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    justify-content: center;
  }
  .place-link {
    font-size: 1rem;
    margin-top: 0.75rem;
  }
    .place-profile:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  }

  /* En desktop, hacemos que todas las tarjetas tengan la misma altura fija */
  .review-card {
    height: 290px;       /* altura fija de 290px */
    overflow-y: auto;    /* scroll interno si el texto es muy largo */
  }

  /* Las tarjetas ya no necesitan la transformación de “estirarse”,
     porque ahora cada una tiene height fijo. El contenedor puede seguir
     usando align-items: stretch por defecto. */
 
  .reviews-container {
    flex: 1 1 auto;       /* ocupa el resto del espacio a la derecha */
    display: flex;
    flex-wrap: wrap;     /* todas las tarjetas en una fila sin wrap */
    overflow-x: visible;      /* si hay más tarjetas de largo, sale scroll horizontal */
    
  }
    .review-card {
    flex: 1 1 200px;       /* cada tarjeta mide 240px de ancho fijo */
    width: 280px;
    height: 260px;         /* altura fija de 240px */
    padding: 1rem;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .review-card:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  }
    .review-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #2c3e50;
  }
    .review-time {
    font-size: 0.8rem;
    color: #7f8c8d;
  }
    .review-rating {
    font-size: 1.1rem;
    color: #f1c40f;
    margin-bottom: 0.5rem;
    }
  .review-text {
    /* Si el texto es más largo, dejo scroll interno en la tarjeta */
    font-size: 0.95rem;
    color: #4a4a4a;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    /* scroll si el texto es muy largo */
    overflow-y: auto;
    max-height: 120px;     /* deja espacio para el enlace abajo */
  }
  /* Ocultar scrollbar interno si no quieres que se vea */
  .review-text::-webkit-scrollbar {
    width: 6px;
  }
  .review-text::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.1);
    border-radius: 3px;
  }
    .review-link {
    text-decoration: none;
    color: #1a73e8;
    font-weight: bold;
    font-size: 0.9rem;
  }
  .review-link:hover {
    text-decoration: underline;
  }
  
  
  
  
  /*FLOTANTE WHATSAPP*/
.whatsapp-flotante {
  position: fixed;
  bottom: 1rem;
  right: 1rem;           /* antes era left: 1rem */
  width: 5.5rem;
  height: 5.5rem;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 3.2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.whatsapp-flotante:hover {
  background-color: #1ebe5c;
  transform: scale(1.1);
}
}