
    :root {
      --primary-color: #2aa5a8;
      --secondary-color: #e9f7f9;
      --dark-color: #333;
      --light-color: #f8f9fa;
      --transition-speed: 0.4s;
    }
    
    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      overflow-x: hidden;
    }
    
    /* Header */
    .navbar {
      padding: 15px 0;
      transition: all 0.3s ease;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .navbar.scrolled {
      padding: 10px 0;
      background-color: rgba(255, 255, 255, 0.98) !important;
    }
    
    .navbar-brand {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--primary-color) !important;
    }
    
    .nav-link {
      font-weight: 500;
      margin: 0 10px;
      position: relative;
      color: var(--dark-color) !important;
    }
    
    .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      background: var(--primary-color);
      bottom: 0;
      left: 0;
      transition: width var(--transition-speed) ease;
    }
    
    .nav-link:hover::after,
    .nav-link.active::after {
      width: 100%;
    }
    
    /* Galería */
    .gallery-section {
      background: linear-gradient(135deg, #f7f7f7 0%, #e9f7f9 100%);
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }
    
    .gallery-section::before {
      content: '';
      position: absolute;
      top: -50px;
      left: -50px;
      width: 200px;
      height: 200px;
      background: rgba(42, 165, 168, 0.1);
      border-radius: 50%;
      z-index: 0;
    }
    
    .gallery-section::after {
      content: '';
      position: absolute;
      bottom: -100px;
      right: -100px;
      width: 300px;
      height: 300px;
      background: rgba(42, 165, 168, 0.05);
      border-radius: 50%;
      z-index: 0;
    }
    
    .gallery-title {
      text-align: center;
      font-size: 3.2rem;
      margin-bottom: 30px;
      color: var(--primary-color);
      font-weight: 800;
      position: relative;
      z-index: 1;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    .gallery-title::after {
      content: '';
      position: absolute;
      width: 100px;
      height: 4px;
      background: linear-gradient(90deg, var(--primary-color), transparent);
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
    }
    
    .gallery-description {
      text-align: center;
      font-size: 1.2rem;
      color: #555;
      margin-bottom: 50px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
      z-index: 1;
    }
    
    /* Swiper Container */
    .swiper-container {
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 20px;
      position: relative;
      z-index: 1;
    }
    
    .swiper {
      width: 100%;
      height: 500px;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 15px 50px transparent;
    }
    
    .swiper-slide {
      position: relative;
      overflow: hidden;
      border-radius: 20px;
      transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    
    .swiper-slide::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
      opacity: 0;
      transition: opacity var(--transition-speed) ease;
      z-index: 1;
    }
    
    .swiper-slide:hover::before {
      opacity: 1;
    }
    
    .gallery-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s cubic-bezier(0.2, 0.96, 0.34, 1);
    }
    
    .swiper-slide:hover .gallery-img {
      transform: scale(1.1);
    }
    
    .gallery-info {
      position: absolute;
      bottom: -50px;
      left: 0;
      width: 100%;
      padding: 20px;
      color: white;
      z-index: 2;
      transition: all var(--transition-speed) cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    
    .swiper-slide:hover .gallery-info {
      bottom: 0;
    }
    
    .gallery-category {
      display: inline-block;
      background-color: var(--primary-color);
      color: white;
      padding: 5px 15px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    .gallery-caption {
      font-size: 1.4rem;
      font-weight: 700;
      margin: 0;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.4s ease 0.1s;
    }
    
    .swiper-slide:hover .gallery-caption {
      opacity: 1;
      transform: translateY(0);
    }
    
    /* Controles Swiper */
    .swiper-button-next,
    .swiper-button-prev {
      width: 50px;
      height: 50px;
      background-color: rgba(255, 255, 255, 0.9);
      border-radius: 50%;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      color: var(--primary-color);
      transition: all var(--transition-speed) ease;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
      font-size: 1.2rem;
      font-weight: bold;
    }
    
    .swiper-button-next:hover,
    .swiper-button-prev:hover {
      background-color: var(--primary-color);
      color: white;
      transform: scale(1.1);
    }
    
    .swiper-pagination-bullet {
      width: 12px;
      height: 12px;
      background-color: rgba(255, 255, 255, 0.8);
      opacity: 1;
      transition: all var(--transition-speed) ease;
    }
    
    .swiper-pagination-bullet-active {
      background-color: var(--primary-color);
      transform: scale(1.2);
    }
    
    /* Filtros de categoría */
    .gallery-categories {
      margin: 40px auto;
      text-align: center;
      position: relative;
      z-index: 1;
    }
    
    .gallery-categories .btn {
      margin: 0 8px 15px;
      padding: 10px 25px;
      border-radius: 30px;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      font-size: 0.85rem;
      transition: all var(--transition-speed) ease;
      position: relative;
      overflow: hidden;
      border: none;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .gallery-categories .btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
      transition: all 0.6s ease;
    }
    
    .gallery-categories .btn:hover::before {
      left: 100%;
    }
    
    .gallery-categories .btn-outline-primary {
      color: var(--primary-color);
      border: 2px solid var(--primary-color);
      background-color: transparent;
    }
    
    .gallery-categories .btn-primary {
      background-color: var(--primary-color);
      color: white;
    }
    
    .gallery-categories .btn-outline-primary:hover {
      background-color: var(--primary-color);
      color: white;
    }
    
    /* Miniaturas */
    .gallery-thumbs-container {
      max-width: 1000px;
      margin: 40px auto 0;
      padding: 0 20px;
      position: relative;
      z-index: 1;
    }
    
    .gallery-thumbs {
      display: flex;
      gap: 15px;
      justify-content: center;
      flex-wrap: wrap;
      padding: 20px 0;
    }
    
    .gallery-thumb {
      width: 100px;
      height: 75px;
      object-fit: cover;
      border-radius: 10px;
      cursor: pointer;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: all var(--transition-speed) ease;
      position: relative;
      overflow: hidden;
    }
    
    .gallery-thumb::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(42, 165, 168, 0.5);
      opacity: 0;
      transition: opacity var(--transition-speed) ease;
    }
    
    .gallery-thumb.active::after,
    .gallery-thumb:hover::after {
      opacity: 1;
    }
    
    .gallery-thumb.active {
      transform: scale(1.1);
      box-shadow: 0 8px 25px rgba(42, 165, 168, 0.3);
    }
    
    /* Lightbox personalizado */
    .lb-container {
      background-color: rgba(0, 0, 0, 0.9);
    }
    
    .lb-image {
      border: 10px solid white;
      box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
    }
    
    .lb-nav a.lb-prev,
    .lb-nav a.lb-next {
      opacity: 1;
    }
    
    .lb-nav a.lb-prev:hover,
    .lb-nav a.lb-next:hover {
      opacity: 0.8;
    }
    
    .lb-data .lb-caption {
      font-size: 1.1rem;
      line-height: 1.6;
      max-width: 700px;
      margin: 0 auto;
    }
    
    .lb-data .lb-close {
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white" width="24px" height="24px"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></svg>') no-repeat center;
      opacity: 1;
      transition: all var(--transition-speed) ease;
    }
    
    .lb-data .lb-close:hover {
      transform: rotate(90deg);
    }
    /* Footer */
footer {
    background-color: #333;
    color: var(--white);
    padding: 60px 0 20px;
}
label {
  color: white;
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.footer-logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}
.footer-logo h2 {
    color: var(--primary-color);
    font-size: 20px;
}
.footer-about p {
    color: #ccc;
    line-height: 1.6;
}
h4 {
  color: white;
   font-size: 18px;
    margin-bottom: 20px;
    left: 30px;
    position: relative;
}
.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
}
.footer-links h3::after,
.footer-services h3::after,
.footer-contact h3::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}
.footer-links ul,
.footer-services ul {
    list-style: none;
}
.footer-links ul li,
.footer-services ul li {
    margin-bottom: 10px;
}
.footer-links ul li a,
.footer-services ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}
.footer-contact p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #ccc;
}
.footer-contact p i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 18px;
}
.whatsapp-.hero-1 {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    padding: 15px;
    font-size: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}
.whatsapp-.hero-1:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}
.whatsapp-.hero-1 .tooltip {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #f9e833ff;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    font-size: 14px;
}
.whatsapp-.hero-1:hover .tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(-10px);
}
.social-icons {
    display: flex;
    margin-top: 20px;
    flex-wrap: wrap;
}
i {
    font-size: 2rem;
}
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #444;
    border-radius: 50%;
    margin-right: 10px;
    margin-left: 0;
    color: var(--white);
    transition: all 0.3s ease;
}
.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}
.footer-bottom p {
    color: #ccc;
}
.footer-bottom span {
    color: var(--primary-color);
}

.contact-social {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.contact-social .social {
    font-size: 1.8rem;
    color: #ccc;
    background-color: #444;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-social .social:hover {
    color: #fff;
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

/* Confirmation Message */
.confirmation-message {
    background-color: #4caf50;
    color: white;
    padding: 10px;
    border-radius: 5px;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 9999;
}

/* Animations & Effects */
.floating {
    animation: float 6s ease-in-out infinite;
}
.scale-up {
    transition: transform 0.3s ease;
}
.scale-up:hover {
    transform: scale(1.05);
}
.btn-cta {
    position: relative;
    overflow: hidden;
}
.btn-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: all 0.3s ease;
}
.btn-cta:hover::before {
    left: 100%;
}
    /* Responsive */
    @media (max-width: 1200px) {
      .swiper {
        height: 450px;
      }
    }
    
    @media (max-width: 992px) {
      .gallery-title {
        font-size: 2.8rem;
      }

      .gallery-section{
        top: 40px;
      }

      
      .swiper {
        height: 400px;
      }
      
      .gallery-thumb {
        width: 85px;
        height: 65px;
      }
    }
    
    @media (max-width: 768px) {
      .gallery-section {
        padding: 80px 0;
      }
      
      .gallery-title {
        font-size: 2.4rem;
      }
      
      .gallery-description {
        font-size: 1.1rem;
        margin-bottom: 40px;
      }
      
      .swiper {
        height: 350px;
      }
      
      .gallery-categories .btn {
        padding: 8px 20px;
        font-size: 0.8rem;
        margin: 0 5px 10px;
      }
      
      .gallery-thumb {
        width: 70px;
        height: 50px;
      }
      
      .gallery-caption {
        font-size: 1.2rem;
      }
    }
    
    @media (max-width: 576px) {
      .gallery-section {
        padding: 60px 0;
      }
      
      .gallery-title {
        font-size: 2rem;
      }
      
      .gallery-description {
        font-size: 1rem;
        margin-bottom: 30px;
      }
      
      .swiper {
        height: 250px;
      }
      
      .gallery-categories .btn {
        padding: 6px 15px;
        font-size: 0.7rem;
      }
      
      .gallery-thumb {
        width: 55px;
        height: 40px;
      }
      
      .gallery-caption {
        font-size: 1rem;
      }
      
      .swiper-button-next,
      .swiper-button-prev {
        width: 40px;
        height: 40px;
      }
      
      .swiper-button-next::after,
      .swiper-button-prev::after {
        font-size: 1rem;
      }
    }
    
    /* Animaciones */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes pulse {
      0% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.05);
      }
      100% {
        transform: scale(1);
      }
    }z
    
    .pulse-animation {
      animation: pulse 2s infinite;
    }
