        :root {
            --primary-color: #00A9B4; 
            --secondary-color: #d1b28d;
            --text-color: #333; 
            --bg-light: #f9f9f9;
            --white-color: #ffffff;
            --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.1);
            --font-main: 'Montserrat', sans-serif;
            --font-title: 'Playfair Display', serif; 
        }

        body {
            font-family: var(--font-main);
            color: var(--text-color);
            background-color: var(--bg-light);
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            overflow-x: hidden;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

/* ==============================
   HEADER
============================== */
.main-header {
  width: 100%;
  box-shadow: var(--shadow-light);
  z-index: 1000;
  background-color: var(--white-color);
  position: fixed;
  top: 0;
  left: 0;
}

.header-superior {
  width: 100%;
  height: 40px;
  background-color: #00A9B4;
}

.header-inferior {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color:white;
  padding: 0 50px; 
  height: 60px; 
  position: relative;
  z-index: 10;
}

.logo-container {
  position: relative;
  width: 140px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: -75px;
  z-index: 5;
}

.logo-content {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-33%);
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.logo-image {
  height: 280px;
  object-fit: contain;
}

/* ===== NAVBAR MEJORADO ===== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-grow: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 5px;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar li a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: block;
  position: relative;
}

/* Línea animada inferior */
.navbar li a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar li a:hover {
  color: var(--primary-color);
  background: rgba(0, 170, 162, 0.08);
}

.navbar li a:hover::after {
  width: 60%;
}

/* ===== DROPDOWN ===== */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Flecha del dropdown */
.dropdown-toggle::before {
  content: '▾';
  font-size: 0.8rem;
  transition: all 0.3s ease;
  order: 2;
}

.dropdown:hover .dropdown-toggle::before {
  transform: rotate(180deg);
}

/* ===== SUBMENU CORREGIDO ===== */
.submenu {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 260px;
  background: white;
  padding: 8px;
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  list-style: none;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 1000;
}

.dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu li {
  width: 100%;
  margin: 0;
}

/* SOLUCIÓN: La flecha ahora es position: absolute */
.submenu a {
  display: block;
  padding: 14px 18px 14px 45px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-color);
  border-radius: 8px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  position: relative;
}

/* Flecha posicionada absolutamente */
.submenu a::before {
  content: '→';
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  font-size: 1.2rem;
  color: var(--primary-color);
  opacity: 0;
  transition: all 0.3s ease;
}

.submenu a:hover {
  background: linear-gradient(135deg, rgba(0, 170, 162, 0.1), rgba(22, 50, 60, 0.05));
  padding-left: 45px;
  border-left-color: var(--primary-color);
  color: var(--primary-color);
}

.submenu a:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Eliminar el ::after de los enlaces del submenu */
.submenu a::after {
  display: none !important;
}

/* ===== BOTÓN DE CONTACTO ===== */
.btn-contact {
  background: linear-gradient(135deg, var(--primary-color), #00c4ba);
  color: var(--white-color) !important;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  margin-left: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 170, 162, 0.3);
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 170, 162, 0.4);
}

.btn-contact::after {
  display: none !important;
}

/* ===== NAVBAR MÓVIL ===== */
.menu-toggle {
  display: none;
  font-size: 2em;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  user-select: none;
  transition: transform 0.3s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

@media (hover: hover) {
  .navbar li.dropdown:hover .submenu {
    max-height: 500px;
    opacity: 1;
  }
}
.dropdown-toggle .fa-chevron-down {
  margin-left: 0.4rem;
  font-size: 0.75em;
  transition: transform 0.3s ease;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 8px;
  user-select: none;
}

.menu-toggle .fa-xmark { display: none; }
.menu-toggle.open .fa-bars { display: none; }
.menu-toggle.open .fa-xmark { display: inline; }

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    color: var(--text-color);
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--white-color);
    padding: 1.5rem 0;
    gap: 1rem;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  }

  .nav-links.active { display: flex; }

  .navbar ul {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    text-align: center;
  }

  .navbar li a {
    font-size: 1.05em;
    padding: 0.75rem;
  }

  .btn-contact { margin: 1rem auto 0; }

  .navbar .submenu {
    position: static;
    background: none;
    box-shadow: none;
    border-radius: 0;
    min-width: unset;
    opacity: 1;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .navbar li.dropdown.open .submenu { max-height: 500px; }

  .navbar .submenu li a {
    background: rgba(0, 0, 0, 0.05);
    margin: 0.25rem 2rem;
    border-radius: 6px;
    font-size: 0.9em;
  }

  .navbar li.dropdown.open > a .fa-chevron-down {
    transform: rotate(180deg);
  
  }
}

@media (max-width: 768px) {
  .navbar .submenu {
    position: static;
    background: none;
    border-radius: 0;
    min-width: unset;
    opacity: 1;
    max-height: 0;  
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 0;
  }

  .navbar li.dropdown:focus-within .submenu {
    max-height: 600px;
    padding: 0.7rem 0;
  }

  .navbar .submenu li {
    margin: 0.5rem 1.2rem;
    border-radius: 10px;
    background: linear-gradient(135deg, #00BCD4, #4dd0e1);
    box-shadow: 0 4px 10px rgba(0, 188, 212, 0.25);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.3s ease;
  }

  .navbar .submenu li:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 188, 212, 0.35);
    background: linear-gradient(135deg, #4dd0e1, #80deea);
  }

  .navbar .submenu li a {
    padding: 1rem 1.2rem;
    font-size: 0.95em;
    font-weight: 600;
    color: #fff; 
    transition: color 0.3s ease;
  }

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

  .navbar li.dropdown > a .fa-chevron-down {
    transition: transform 0.3s ease;
    color: #00BCD4;
  }
  .navbar li.dropdown:focus-within > a .fa-chevron-down {
    transform: rotate(180deg);
    color: #4dd0e1;
  }
}

.menu-toggle {
  display: none;
  font-size: 2em;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  user-select: none;
  transition: transform 0.3s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px; 
}


@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    color: var(--dark-color);
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color:white;
    padding: 15px 0;
    gap: 12px;
    animation: fadeSlide 0.3s ease forwards;

    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  @keyframes fadeSlide {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .navbar ul {
    flex-direction: column;
    gap: 8px;
    padding: 0;
  }

  .btn-contact {
    margin: 10px 0 0 0;
  }

  .header-inferior {
    padding: 0 20px;
    height: 70px;
  }

  .logo img {
    width: 100px;
    margin-right: 18px;
  }
}

@media (min-width: 1600px) {
  .navbar ul {
    gap: 40px;
  }

  .navbar li a {
    font-size: 1.15em;
  }

  .btn-contact {
    padding: 14px 32px;
    font-size: 1.05em;
    margin-left: 50px;
  }

  .header-inferior {
    height: 95px;
  }

  .logo img {
    width: 150px;
  }
}

        .hero {
    position: relative;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
    margin-top: 25px;
    overflow: hidden;
}

.hero-fondo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.stats-banner {
    background: #00BCD4;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 13px 10px;
    text-align: center;
}
        

        .hero-content { z-index: 1; }
        .hero h1 { font-family: var(--font-title); font-size: clamp(2.5rem, 5vw, 4.5rem); margin: 0; }
        .hero p { font-size: clamp(1rem, 2vw, 1.5rem); margin-top: 0.5rem; }

        .section {
            padding: 4rem 0;
        }
        .content p{
         color: #000000;
         margin-bottom: 2rem;
         font-size: 1.2rem;
         font-weight: 600;
         text-align: center;
        }

        .section-title, .section-text, .section-titulo {
            text-align: center;
            font-family: 'Staatliches', sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 2rem;
            color: var(--primary-color);
            margin-top: 4rem;
        }
        
        .section-text { color: var(--white-color); font-family: 'Staatliches', sans-serif; }
        .section-titulo { color: var(--white-color); }

        .about-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
            margin-top: 4rem;
        }

        .about-section .content {
            flex: 1;
            text-align: center;
        }
        
        .about-section img {
            width: 100%;
            max-width: 350px;
            height: auto;
            border-radius: 1.5rem;
            box-shadow: var(--shadow-light);
            transition: transform 0.3s ease;
        }
        
        .about-section img:hover { transform: scale(1.02); }

        @media (min-width: 768px) {
            .about-section { flex-direction: row; text-align: left; }
            .about-section .content { text-align: left; }
        }

        .services-section { 
          background:#00A9B4;
          margin-top: 6rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .service-item {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 2rem 1rem;
            border-radius: 1.5rem;
            transition: background-color 0.3s;
        }
        
        .service-item:hover { background-color: rgba(255, 255, 255, 0.2); }

        .service-item img {
            width: 120px;
            height: 120px;
            margin-bottom: 1rem;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--secondary-color);
            transition: transform 0.3s;
        }

        .service-item img:hover { transform: scale(1.1); }

        .service-item h3 { font-size: 1.3rem; color: #00BCD4; margin: 0; }
        .service-item p {  font-size: 1.05rem; color: #00BCD4; opacity: 0.9;  }

        .lodging-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 30px;
        }

        .lodging-card {
            background-color: var(--white-color);
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .lodging-card:hover { transform: translateY(-10px); }

        .lodging-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .lodging-card-content { padding: 1.5rem; }
        .lodging-card-content h3 { font-size: 1.5rem; color: var(--primary-color); margin: 0 0 0.5rem; }
        .lodging-card-content p { margin: 0 0 1rem; color: var(--text-color); }

        @media (min-width: 768px) {
            .lodging-grid { grid-template-columns: repeat(2, 1fr); }
        }

        .testimonials-section {
            background: #00A9B4;
            margin-top: 4rem;
        }

        .testimonials-wrapper {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
}

.image-container {
    flex: 1;
    max-width: 40%;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.testimonials-content {
    flex: 1;
    max-width: 50%;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.client-avatar {
    width: 60px;
    height: 60px;
    background: #00A9B4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.client-info {
    flex: 1;
}

.client-name {
    margin: 0;
    color: black;
    font-size: 1.4rem;
    font-weight: bold;
}

.client-location {
    margin: 0.2rem 0 0;
    color: rgba(0, 0, 0, 0.9);
    font-size: 0.95rem;
}

.rating {
    margin-bottom: 1rem;
}

.star {
    color: #ffd700;
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.testimonial-block {
    font-style: italic;
    color: black;
    margin: 0 0 1.5rem;
    font-size: 1.2rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.testimonial-footer {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(0, 0, 0, 0.993);
}

.testimonial-footer span {
    color: black;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-texto {
    text-align: center;
    font-family: Verdana, sans-serif;
    font-size: 2.5rem;
    color: rgb(0, 0, 0);
    margin-bottom: 2rem;
}

.contact-section {
  padding: 70px 20px;
  background: #fff;
  margin-top: 4rem;
}

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

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
}

.contact-header .highlight {
  color: #00BCD4;
}

.contact-header .brand {
  color: white;
  background: #00BCD4;
  padding: 5px 10px;
  border-radius: 8px;
}

.contact-description {
  margin-top: 15px;
  font-size: 1.1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact-details {
  background: #00A9B4;
  color: white;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.contact-details h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
  color: white;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-item i {
  font-size: 1.3rem;
  color:  white;
  margin-right: 12px;
}

.contact-item a {
  color:  white;
  text-decoration: none;
  font-weight: bold;
}

.contact-item a:hover {
  text-decoration: underline;
}

.social-links {
  margin-top: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
 color: var(--bg-light);
    font-size: 1.6rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.map-container h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: #00BCD4;
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

        @media (max-width: 768px) {
            .contact-section {
                padding: 3rem 0;
            }
        }
        

        @media (min-width: 768px) {
            .about-section {
                flex-direction: row;
                text-align: left;
            }
            .about-section .content {
                text-align: left;
            }
            .contact-section {
                grid-template-columns: 1fr 1fr;
            }
        }

.services {
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.services-container h2 {
  font-size: 4.5rem;
  margin-bottom: 15px;
  color: #00b6c9;
}
.services-container h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #00BCD4;
}

.services-container p {
  font-size: 1.1rem;
  margin-bottom: 50px;
  color: #00BCD4;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.service-item {
  background: url("../../../img/fondo oasis.png");
  border-radius: 20px;
  padding: 30px;
  width: 280px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, background 0.3s ease;
  color: #00BCD4;
}

.service-item:hover {
  background: url("../../../img/fondo oasis.png");
  transform: translateY(-10px); 
}

.service-item-1 {
  background: url("../../../img/fondo galu negro.webp");
  border-radius: 20px;
  padding: 30px;
  width: 280px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, background 0.3s ease;
  color: #00BCD4;
}

.service-item-1:hover {
  background: url("../../../img/fondo galu negro.webp");
  transform: translateY(-10px); 
}

.service-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.service-circle.img1 {
  background-image: url("../../../img/oasis/Electricidad.png");
}

.service-circle.img2 {
  background-image: url("../../../img/oasis/agua.png");
}

.service-circle.img3 {
  background-image: url("../../../img/oasis/desague.png");
}

        
.main-footer {
    background: #00b6c9;
    color: var(--bg-light);
    padding: 3.5rem 1.5rem;
    text-align: center;
    border-top: 5px solid #00b6c9;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-content: center;
    align-items: start;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        text-align: left;
    }
}

.footer-column {
    margin: 0 1rem;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color:white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease, transform 0.2s ease;
}

.footer-column a:hover {
    color: var(--secondary-color);
    transform: translateX(4px);
}

.footer-column.branding-column {
    flex: 1.5;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.footer-logo-text-group h1 {
    font-size: 2.8em;
    font-weight: 700;
    color: var(--white-color);
    margin: 0;
    line-height: 1.1;
}

.slogan {
    font-style: italic;
    opacity: 0.85;
    font-size: 0.95rem;
}

.footer-column .contact-info p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column .contact-info i {
    color: white;
}

.social-links {
    margin-top: 1.5rem;
}

.social-links h3 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    color: white;
}

.social-links .social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-links .social-icons a {
    color: var(--bg-light);
    font-size: 1.6rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links .social-icons a:hover {
    color: var(--secondary-color);
    transform: scale(1.2);
}
@media (max-width: 768px) {
  .nav-links.active ~ .logo-container,
  .menu-toggle.open ~ .logo-container {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .logo-content {
    display: none !important;
  }
}

h1 {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  margin-top: 8rem;
  color: #00AAA2;
  margin-bottom: 40px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ======= CONTENEDOR DE LA GALERÍA ======= */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;              /* 🔹 centra horizontalmente */
  justify-items: center;       /* 🔹 centra las imágenes dentro de cada celda */
  align-content: center;       /* 🔹 centra las filas verticalmente dentro del grid */
  place-items: center;         /* 🔹 combinación de justify-items + align-items */
  text-align: center;
}

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.4s ease, filter 0.4s ease, box-shadow 0.4s ease;
}

.gallery img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
  box-shadow: 0 10px 25px rgba(0,170,162,0.4);
}

/* ======= LIGHTBOX ======= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1000;
}

.lightbox img {
  max-width: 85%;
  max-height: 80%;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0,170,162,0.5);
  animation: zoomIn 0.4s ease;
}

/* Animación zoom */
@keyframes zoomIn {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ======= BOTONES NAVEGACIÓN ======= */
.controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 40px;
}

.btn {
  background: rgba(0,170,162,0.8);
  color: white;
  border: none;
  font-size: 2.2rem;
  padding: 8px 18px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #38b6b0;
}

/* Botón cerrar */
.close-btn {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 2rem;
  color: #f3f3f3;
  cursor: pointer;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  padding: 4px 14px;
  transition: background 0.3s ease;
}

.close-btn:hover {
  background: rgba(255,255,255,0.2);
}

/* ======= RESPONSIVE ======= */
@media (max-width: 768px) {
  .gallery img {
    height: 180px;
  }
  .btn {
    font-size: 1.8rem;
  }
}


.gallery-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.gallery-section h2 {
  color: black;
  font-size: 2.5rem;
  font-weight: 6rem;
  font-family: 'Arial', sans-serif;
  margin-bottom: 20px;
}
.gallery-section h2 span {
  color: #00BCD4;
  font-size: 3.5rem;
  font-weight: 6rem;
}

.myGallery {
  width: 100%;
  height: 500px;
  margin-bottom: 15px;
}
.myGallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.myThumbs {
  height: 100px;
  box-sizing: border-box;
  padding: 10px 0;
}
.myThumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.myThumbs .swiper-slide-thumb-active img {
  border-color: orange;
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .myGallery {
    height: 300px;
  }
  .myThumbs {
    height: 70px;
  }
}

.video-oasis{
  width: 400px;
  border-radius: 10px;
}
