* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
}

/* Barra superior */
.topbar {
  position: relative;
  z-index: 9999;
  background-color: #1c1c1c;
  color: #fff;
  font-size: 14px;
}

.topbar-link {
  color: #fff;              /* mantiene el color blanco */
  text-decoration: none;    /* quita subrayado */
  display: flex;            /* ícono + texto alineados */
  align-items: center;
  gap: 6px;                 /* espacio entre ícono y texto */
}

.topbar-link:hover {
  color: #ebcc7b;           /* cambia color al pasar el mouse */
}

.attention-text {
  color: #fff;
  font-weight: 600;
  animation: colorChange 2s infinite alternate;
}

/* Animación de colores */
@keyframes colorChange {
  0%   { color: #fff; }       /* blanco */
  50%  { color: #d7c9a7; }    /* rojo */
  100% { color: #ebcc7b; }    /* dorado */
}

.icon {
  width: 18px;   /* ajusta tamaño */
  height: auto;
  margin-right: 6px;
  vertical-align: middle;
}

.topbar-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar span {
  margin-right: 15px;
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }
}






/* Header */
.main-header {
  background: #ebcc7b;
  padding: 15px 20px;  /* más alto por defecto */
  transition: all 0.3s ease;
  position: sticky;
  top: 0;
  z-index: 999;
}

.main-header.shrink {
  padding: 5px 15px;   /* se achica al hacer scroll */
}

.main-header .logo img {
  height: 80px;
  transition: height 0.3s ease;
}

.main-header.shrink .logo img {
  height: 40px;   /* logo más chico */
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Logo izq, menú centro, idioma der */
  max-width: 1300px;
  margin: 0 auto;
  padding: 10px 20px;
}

/* Botón idioma */
.language-switch {
  display: flex;
  gap: 10px;
}

.lang-btn {
  background: #fff;
  color: #ebcc7b;
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.lang-btn:hover {
  background: #1c1c1c;
}

.lang-btn.active {
  background: #1c1c1c;
}

/* Botón idioma */
.language-switch2 {
  display: flex;
  gap: 10px;
}

.lang-btn2 {
  background: #cc9900;
  color: #fff;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.lang-btn2:hover {
  background: #1c1c1c;
}

.lang-btn2.active {
  background: #1c1c1c;
}

/* Logo ya no necesita absolute */
.logo {
  position: relative;
  transform: none;
  top: auto;
  left: auto;
}

.logo img {
  height: 60px; /* ajusta el tamaño del logo */
  width: auto;
}

.main-nav .nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;   /* espacio entre las opciones */
}


.main-nav .nav-menu li {
  position: relative;
}

.main-nav .nav-menu a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  padding: 8px 12px;
}

.main-nav .nav-menu .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; /* debajo del link principal */
  left: 0;
  background: #fff;
  list-style: none;
  padding: 10px 0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.main-nav .nav-menu .dropdown:hover .dropdown-menu {
  display: block;
}

/* Submenú oculto inicialmente */
.dropdown-menu {
  max-height: 0;            /* altura colapsada */
  overflow: hidden;         /* oculta contenido */
  opacity: 0;               /* invisible */
  transition: all 0.4s ease; /* animación suave */
  
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 180px;
  border: 1px solid #eee;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 1000;
}

/* Links del submenú */
.dropdown-menu li a {
  display: block;
  padding: 8px 15px;
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.dropdown-menu li a:hover {
  background-color: #000000;
  color: #ebcc7b;
}

/* Al hacer hover, se expande */
.dropdown:hover .dropdown-menu {
  max-height: 500px;   /* altura suficiente para todo el contenido */
  opacity: 1;          /* visible */
  padding: 10px 0;     /* reaparece el padding */
}

/* Estilo de la flecha */
.arrow {
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

/* Dibujamos la flecha con CSS (▼) */
.arrow::before {
  content: "▼";   /* flecha hacia abajo */
  font-size: 10px;
  display: inline-block;
}

/* Cuando el dropdown está activo (hover), la flecha rota */
.dropdown:hover .arrow {
  transform: rotate(180deg); /* apunta hacia arriba (▲) */
}

@media (max-width: 768px) {
  .main-header {
    display: none;
  }
}


/* Ocultar en escritorio */
.mobile-nav {
  display: none;
}

@media (max-width: 768px) {
  .mobile-nav {
    display: block;
    background: #ebcc7b;
    padding: 15px 20px;
    width: 90%;              /* 90% del ancho */
    margin: 0 auto;          /* centrado */
    border-radius: 0px;     /* opcional para estética */
  }
  
  .mobile-nav-wrapper {
    background-color: #ebcc7b;
    padding: 20px 0;
  }

  .mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-logo {
    height: 60px;
  }

  .hamburger {
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
	color: #1c1c1c;
  }
  
  .hamburger:hover {
  color: #fff;
  }
  
  .hamburger:focus {
  outline: none;
  box-shadow: none;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: #ebcc7b;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
  padding: 10px 20px;
  transition: max-height 0.3s ease; /* opcional */
  overflow: hidden;
}

.mobile-menu.active {
  display: flex;
}

  .mobile-menu a {
    padding: 12px 0;
    text-decoration: none;
    color: #1c1c1c;
    border-top: 0.5px solid #1c1c1c;
    font-weight: 500;
  }

  .mobile-menu a:hover {
    background-color: #ebcc7b;
    color: #fff;
  }


.has-arrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.arrow {
  font-size: 14px;
  transition: transform 0.3s ease;
}


.submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  background-color: #ebcc7b; /* Fondo del submenu */
  border: none;
}

.submenu a {
  position: relative; /* Necesario para que ::before funcione */
  padding: 10px 0 10px 25px; /* Espacio para el círculo */
  color: #1c1c1c;
  font-size: 0.95rem;
  background: none;
  text-decoration: none;
  display: block;
  border: none;
  margin: 0;
}

.submenu a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: #fff; /* Color del círculo */
  border-radius: 50%;
}

.submenu a:hover {
  color: #fff;
}

.arrow.open {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.mobile-nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ebcc7b;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }

  .mobile-nav-wrapper.scrolled {
    padding: 10px 0;
  }

  .mobile-nav-header {
    transition: all 0.3s ease;
  }

  .mobile-logo {
    height: 60px;
    transition: height 0.3s ease;
  }

  .mobile-nav-wrapper.scrolled .mobile-logo {
    height: 40px;
  }
  .right-controls {
  display: flex;
  align-items: center;
  gap: 8px; /* espacio entre hamburguesa e idioma */
}
}





/* HERO Section */
.hero {
  height: 80vh; /* ocupa toda la pantalla */
  background: url('img/INICIO.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}

/* HERO Section */
.hero1 {
  height: 40vh; /* ocupa toda la pantalla */
  background: url('img/INICIO.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}

/* Fondo semitransparente opcional para que el texto se lea mejor */
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.35);
}

/* Contenido */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 600;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
}

/* Botón */
.hero-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid #fff;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: transparent;
  color: #fff;
}









/* Services Section */
.services {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  background: #f3f3f3;
  background-size: cover;
  background-attachment: fixed;
}

.services h2 {
  font-size: 36px;
  color: #000;
  margin-bottom: 10px;
}

.services .subtitle {
  font-style: italic;
  color: #000;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.3); /* fondo blanco traslúcido */
  padding: 40px;
  border-radius: 10px;
}

.service-item img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}

.service-item h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #fff;
}

.service-btn {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding-bottom: 3px;
  transition: all 0.3s ease;
}

.service-btn:hover {
  color: #ebcc7b;
  border-color: #ebcc7b;
}










.carousel {
  width: 100%;
  padding: 20px 0;
  overflow: hidden; /* oculta lo que sobra en pantallas grandes */
}

.carousel .slides {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

/* imágenes en desktop */
.carousel .slides img {
  width: 18%;      /* 5 imágenes aprox en fila */
  height: auto;
  border-radius: 8px;
  flex-shrink: 1; /* permite que se achiquen */
}

/* 📱 Versión móvil */
@media (max-width: 768px) {
  .carousel {
    overflow-x: auto;  
    padding: 15px 15px;   /* ✅ margen a los lados */
  }

  .carousel .slides {
    justify-content: flex-start;
    gap: 15px;         /* separa las fotos entre sí */
    width: max-content;
    scroll-snap-type: x mandatory; 
  }

  .carousel .slides img {
    width: 250px;   
    flex-shrink: 0; 
    scroll-snap-align: start; 
    border-radius: 8px; /* opcional: esquinas suaves */
  }
}











.testimonial-carousel {
  position: relative;
  max-width: auto;
  margin: 50px auto;
  padding: 40px 20px;
  background: #f3f3f3; /* fondo suave */
  border-radius: 10px;
  text-align: center;
  overflow: hidden;
}

.testimonial {
  display: none;
  animation: fade 0.6s ease-in-out;
}

.testimonial.active {
  display: block;
}

.testimonial h3 {
  font-size: 20px;
  font-style: italic;
  margin-bottom: 15px;
  color: #7a5c68;
}

.testimonial p {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 15px;
}

.testimonial .author {
  font-weight: bold;
  color: #b25d6b;
}

button.prev,
button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: #7a5c68;
  transition: color 0.3s;
}

button.prev:hover,
button.next:hover {
  color: #b25d6b;
}

button.prev { left: 10px; }
button.next { right: 10px; }

@keyframes fade {
  from { opacity: 0.3; }
  to { opacity: 1; }
}

/* 📱 Versión móvil */
@media (max-width: 768px) {
  .testimonial-carousel {
    padding: 30px 15px;
  }
  .testimonial h3 {
    font-size: 18px;
  }
  .testimonial p {
    font-size: 14px;
  }
}












/* Declaración de la fuente Lucida */
@font-face {
  font-family: serif;
}

/* Aplica la fuente a tu h2 */
h2 {
  text-align: center;
  margin-bottom: 30px;
  margin-top: 50px;
  font-family: serif;
  font-size: 2.8em;
  color: #333;
}

/* 📱 Estilo solo para móviles */
@media (max-width: 768px) {
  h2 {
    width: 90%;
    margin-left: auto;
    margin-right: auto; /* centrado */
    font-size: 2em; /* opcional: más pequeño en móvil */
  }
}


.faq-container {
  width: 800px;
  max-width: 100%;
  margin: 0 auto;        /* centrado */
  padding-bottom: 20px;  /* ✅ espacio al final */
}
.faq-item {
  background-color: #f3f3f3;
  color: #1c1c1c;
  cursor: pointer;
  padding: 15px 50px 15px 20px; /* espacio a la derecha para la flecha */
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 1.2em;
  margin-bottom: 5px;
  transition: background-color 0.3s ease;
  border-radius: 50px;
  position: relative; /* para posicionar la flecha dentro */
}

/* Flecha por defecto (abajo) */
.faq-item::after {
  content: "▼";
  position: absolute;
  right: 20px;
  font-size: 1em;
  transition: transform 0.3s ease;
}

/* Cuando el botón está activo → flecha arriba */
.faq-item.active::after {
  transform: rotate(180deg); /* voltea la flecha */
}

/* Hover */
.faq-item:hover {
  background-color: #ebcc7b;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  background: #fff;
  color: #1c1c1c;
  padding: 0 20px;
  border-radius: 0 0 8px 8px;
  margin-bottom: 10px;
}

.faq-content.open {
  padding: 20px;
  max-height: 300px;
}

/* Estilos responsive para celular */
@media (max-width: 768px) {
  .faq-container {
    width: 90%;
    max-width: 90%;
  }
}







.footer {
    background-color: #ebcc7b;
    padding: 40px 20px;
    color: #000;
    font-family: 'Montserrat', sans-serif;
  }

  .footer-container {
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 80px;
    flex-wrap: wrap; /* para que se acomode en móviles */
    max-width: 1300px;
    margin: 0 auto;
  }

  .footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 250px;
  }
  
  .footer-icons {
  margin-top: 10px;
}

.footer-icons a {
  display: inline-block;
  margin: 0 8px; /* Espacio entre iconos */
}

.footer-icons img.icon {
  width: 30px; /* Ajusta el tamaño si quieres */
  height: auto;
}

  .footer-column strong {
    font-size: 1.1em;
    margin-bottom: 10px;
    text-transform: uppercase;
  }

  .footer-column a, 
  .footer-column span {
    color: #1c1c1c;
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s ease;
  }

  .footer-column a:hover {
    color: #fff; /* se pone negro al pasar el mouse */
  }
  
  
  
  
  
  
  
  
.logos-section {
  background-color: #cccccc; /* gris claro */
  padding: 20px 0;
  width: 100%;
}

.logos-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap; /* en móviles los acomoda */
}

.logos-container img {
  max-height: 120px; /* controla el tamaño de los logos */
  max-width: 200px;
  object-fit: contain;
  filter: grayscale(100%); /* logos en gris */
  transition: filter 0.3s ease;
}

.logos-container img:hover {
  filter: grayscale(0%); /* al pasar el mouse se ve a color */
}

/* Modo móvil */
@media (max-width: 768px) {
  .logos-container {
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center; /* centra cada logo dentro de su celda */
  }

  .logos-container img {
    max-width: 100%;
    max-height: 100px;
  }
}

  
  
  
  
  
  
  
  
  /* Estilo del botón flotante */
.btn-flotante {
    position: fixed; /* Fija el botón en la pantalla */
    bottom: 20px; /* Distancia desde la parte inferior de la pantalla */
    right: 20px; /* Distancia desde el lado derecho de la pantalla */
    background-color: transparent; /* Fondo transparente para el botón */
    border: none; /* Sin borde */
    border-radius: 50%; /* Botón redondeado */
    padding: 10px; /* Espaciado dentro del botón */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra para darle profundidad */
    z-index: 999; /* Asegura que el botón esté sobre otros elementos */
    transition: transform 0.3s ease-in-out; /* Transición suave */
}

.btn-flotante:hover {
    transform: scale(1.5); /* Efecto de ampliación cuando el mouse pasa sobre el botón */
}

/* Estilo de la imagen dentro del botón */
.btn-flotante img {
    width: 50px; /* Ancho de la imagen */
    height: 50px; /* Alto de la imagen */
    object-fit: contain; /* Asegura que la imagen se ajuste correctamente */
}

/* Estilos adaptados para dispositivos móviles */
@media (max-width: 768px) {
    .btn-flotante {
        bottom: 15px; /* Ajusta la distancia desde el fondo para móviles */
        right: 15px; /* Ajusta la distancia desde el lado derecho para móviles */
        padding: 8px; /* Ajusta el espaciado del botón en móviles */
    }

    .btn-flotante img {
        width: 50px; /* Ajusta el tamaño de la imagen en móviles */
        height: 50px; /* Ajusta el tamaño de la imagen en móviles */
    }
}


/* Estilo del botón flotante */
.btn-flotante2 {
    position: fixed; /* Fija el botón en la pantalla */
    bottom: 120px; /* Distancia desde la parte inferior de la pantalla */
    right: 20px; /* Distancia desde el lado derecho de la pantalla */
    background-color: transparent; /* Fondo transparente para el botón */
    border: none; /* Sin borde */
    border-radius: 50%; /* Botón redondeado */
    padding: 10px; /* Espaciado dentro del botón */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra para darle profundidad */
    z-index: 999; /* Asegura que el botón esté sobre otros elementos */
    transition: transform 0.3s ease-in-out; /* Transición suave */
}

.btn-flotante2:hover {
    transform: scale(1.5); /* Efecto de ampliación cuando el mouse pasa sobre el botón */
}

/* Estilo de la imagen dentro del botón */
.btn-flotante2 img {
    width: 50px; /* Ancho de la imagen */
    height: 50px; /* Alto de la imagen */
    object-fit: contain; /* Asegura que la imagen se ajuste correctamente */
}

/* Estilos adaptados para dispositivos móviles */
@media (max-width: 768px) {
    .btn-flotante2 {
        bottom: 100px; /* Ajusta la distancia desde el fondo para móviles */
        right: 15px; /* Ajusta la distancia desde el lado derecho para móviles */
        padding: 8px; /* Ajusta el espaciado del botón en móviles */
    }

    .btn-flotante2 img {
        width: 50px; /* Ajusta el tamaño de la imagen en móviles */
        height: 50px; /* Ajusta el tamaño de la imagen en móviles */
    }
}






.map-container {
  width: 750px; /* ancho desktop */
  max-width: 100%;
}

@media (max-width: 768px) {
  .map-container {
    width: 90%;
    margin: 0 auto;
  }

  /* Opcional: ajustar la altura en móvil */
  .map-container iframe {
    height: 300px; /* o ajusta según prefieras */
  }
}








.map-container1 {
  width: 1200px; /* ancho desktop */
  max-width: 100%;
}

@media (max-width: 768px) {
  .map-container1 {
    width: 90%;
    margin: 0 auto;
  }

  /* Opcional: ajustar la altura en móvil */
  .map-container1 iframe {
    height: 300px; /* o ajusta según prefieras */
  }
}







.contenedor11 {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  align-items: center; /* Centra verticalmente las columnas */
}

/* Columnas izquierda y derecha */
.columna11 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

/* Imagen centrada verticalmente en columna derecha */
.derecha11 {
  justify-content: center;
  align-items: center;
}

/* Estilos generales para las imágenes */
.columna11 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .contenedor11 {
	padding-bottom: 20px;
    flex-direction: column;
    align-items: center;
  }

  .columna11 {
    width: 90%;
    align-items: center;
  }

  .columna11 img {
    width: 90%;
    max-width: 90%;
  }

  .derecha11 {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}







.about-us {
  max-width: 1100px;
  margin: 40px auto;
  font-family: Arial, sans-serif;
  text-align: justify;
  padding: 20px 40px; /* ejemplo para escritorio */
}

@media (max-width: 768px) {
  .about-us {
    margin-top: 180px;
  }
}







.contact-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  gap: 30px;
}

.contact-map,
.contact-form {
  flex: 1 1 500px;
  box-sizing: border-box;
}

/* Mapa */
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: 0;
  border-radius: 10px;
}

/* Formulario */
.contact-form {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.contact-form h2 {
  margin-bottom: 20px;
  color: #1c1c1c;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  box-sizing: border-box;
}

.contact-form button {
  background-color: #a20449;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #810236;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column-reverse;
  }

  .contact-form  {
    padding-top: 80px;
  }
  .contact-map {
    flex: 1 1 100%;
  }
}







/* Sección general */
.consultation-section {
  width: 100%;
  background-color: #fff;
  padding: 60px 20px;
}

/* Contenedor centrado y máximo ancho */
.consultation-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

/* Imagen */
.consultation-image {
  flex: 1;
}

.consultation-image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* Texto */
.consultation-text {
  flex: 1;
}

.consultation-text h2 {
  font-size: 36px;
  color: #1c1c1c;
  font-family: serif;
  margin-bottom: 20px;
}

.consultation-text .italic {
  font-style: italic;
  color: #666;
  margin-bottom: 20px;
}

.consultation-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
}

/* Botón */
.book-btn {
  display: inline-block;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  transition: background 0.3s ease;
}

.book-btn:hover {
  background-color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .consultation-container {
    flex-direction: column;
  }

  .consultation-text h2 {
    font-size: 28px;
    text-align: center;
  }

  .consultation-text,
  .consultation-image {
    text-align: center;
  }
}










.lash-services {
  width: 100%;
  padding: 80px 20px;
  background: #fdfdfd; /* color de fondo */
}

.lash-services .container {
  max-width: 1200px;
  margin: 0 auto;
}

.service {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
}

.service-image img {
  width: 500px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-text {
  flex: 1;
}

.service-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #333;
}

.service-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #555;
}

/* 🌐 MODO MÓVIL */
@media (max-width: 768px) {
  .service {
    flex-direction: column; /* imagen arriba, texto abajo */
    text-align: center;
    gap: 20px;
  }

  .service-image img {
    width: 100%;
    max-width: 400px; /* evita que sea gigante en móviles */
    margin: 0 auto;
  }

  .service-text h2 {
    font-size: 1.5rem;
  }

  .service-text p {
    font-size: 0.95rem;
  }
}

