@font-face {
    font-family: "Inter";
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url("/_hcms/googlefonts/Inter/regular.woff2") format("woff2"), url("/_hcms/googlefonts/Inter/regular.woff") format("woff");
  }
  @font-face {
    font-family: "Inter";
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url("/_hcms/googlefonts/Inter/700.woff2") format("woff2"), url("/_hcms/googlefonts/Inter/700.woff") format("woff");
  }
  @font-face {
    font-family: "Inter";
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url("/_hcms/googlefonts/Inter/700.woff2") format("woff2"), url("/_hcms/googlefonts/Inter/700.woff") format("woff");
  }
  @font-face {
    font-family: "Rubik";
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url("/_hcms/googlefonts/Rubik/regular.woff2") format("woff2"), url("/_hcms/googlefonts/Rubik/regular.woff") format("woff");
  }
  @font-face {
    font-family: "Rubik";
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url("/_hcms/googlefonts/Rubik/700.woff2") format("woff2"), url("/_hcms/googlefonts/Rubik/700.woff") format("woff");
  }
  @font-face {
    font-family: "Rubik";
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url("/_hcms/googlefonts/Rubik/700.woff2") format("woff2"), url("/_hcms/googlefonts/Rubik/700.woff") format("woff");
  }
.navbar {
  top: 0;
  margin-top: 40px !important; /* Asegura espacio para la barra de teléfonos */
  background: linear-gradient(135deg, #5f7c84 0%, #368697 100%);
  backdrop-filter: blur(10px);
  transition: background 0.3s ease-in-out, transform 0.3s;
}

.navbar-nav .nav-link {
  color: #368697 !important; /* Un tono claro, pero acorde a la paleta */
  transition: color 0.3s ease-in-out;
  font-size: 18px;
}

.navbar-nav .nav-link:hover {
  color: #b0c4ce !important; /* Azul claro refinado en lugar del amarillo */
}

.dropdown-menu {
  background: linear-gradient(135deg, #368697 0%, #c7d7de 100%);
  border: none;
  border-radius: 10px;
  overflow: hidden;
}

.dropdown-menu .dropdown-item {
  color: #ffffff;
  transition: background 0.3s, transform 0.3s;
}

.dropdown-menu .dropdown-item:hover {
  background: #b0c4ce; /* Cambio del amarillo a un tono más armónico */
  color: black;
  transform: translateX(10px);
}

.dropdown:hover .dropdown-menu {
  display: block;
  animation: fadeInDown 0.5s;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.accordion-button{
        font-weight: 800;
}


        .content{
            margin-top: 30px;
            text-align: center;
        }
        h2{
            font-family: Rubik, sans-serif !important;
        }
         body {
            font-weight: 800 !important;
            padding-top: 70px;
            background-color: #ffffff;
            color:#368697;
            text-align: center;
                display: flex;
            flex-direction: column;
            min-height: 100vh;
            margin: 0;
        }

        /* Contenedor inicial */
        .video-container {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100vh;
            overflow: hidden;
            max-height: 700px;
        }

        /* Imágenes laterales */
        .side-image {
            width: 30%;
            transition: opacity 1s ease-in-out;
        }

        /* Video en el centro */
        .video-wrapper {
            width: 40%;
            transition: width 1s ease-in-out;
        }
            /* Responsivo: ocultar las imágenes en pantallas pequeñas y hacer que el video abarque todo */
    @media (max-width: 768px) {
        #leftImage, #rightImage {
            display: none; /* Ocultar imágenes en pantallas pequeñas */
        }
        
        #videoWrapper {
            width: 100vw;
            height: 100vh;
        }
                /* Video en el centro */
        .video-wrapper {
            width: 100%;
            transition: width 1s ease-in-out;
        }
    }

#videoWrapper {
    height: auto;
    /*max-width: 800px; /* Máximo 800px para evitar que sea muy grande en pantallas grandes */
    /*transition: all 0.5s ease-in-out;*/
    position: relative;
    /*margin: 0 auto; /* Centrar horizontalmente */
    overflow: hidden; /* Evitar desbordamiento */
}

/* Cuando el video se expande */
.video-expanded {
    width: 100vw !important; /* 100% del ancho de la pantalla */
    height: 100vh !important; /* 100% de la altura de la pantalla */
    max-width: 100% !important;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000; /* Asegura que esté por encima de otros elementos */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black; /* Fondo negro para evitar efectos raros */
}

.container-categorias {
    background: linear-gradient(to bottom, #f2f2f2 5%, #e0e0e0 95%);
    padding: 55px 55px 0px 55px;
    display: flex;
    flex-direction: row; /* Alineación horizontal por defecto */
    align-items: flex-end;
    max-width: 100%;
    width: 100%; /* Asegura que el contenedor se ajuste a tamaños pequeños */
    box-sizing: border-box; /* Incluye padding en el cálculo de ancho */
}

.image-categorias {
    width: 45%;
    height: 90%;
    border-top-left-radius: 15px;
    object-fit: cover;
    align-self: flex-end;
    margin-bottom: 0;
    margin-right: 0;
}

.text-container-categorias {
    width: 55%;
    height: 100%;
    background: white;
    padding: 15px 45px 15px 45px;
    border-radius: 15px 15px 0 0;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 0;
    margin-left: 0;
    color: black;
}

.image-categorias-2 {
    width: 45%;
    height: 90%;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    object-fit: cover;
    align-self: flex-end;
    margin-bottom: 0;
    margin-left: 0;
    z-index: 1;
    position: relative;
    left: -2.5%;
}

.text-container-categorias-2 {
    width: 55%;
    height: 100%;
    background: white;
    padding: 15px 45px 15px 45px;
    border-radius: 15px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 18px;
    margin-right: 0;
    color: black;
    position: relative;
    z-index: 2;
}

/* Media query para pantallas pequeñas */
@media (max-width: 768px) {
    .container-categorias {
        padding: 20px 20px 0px 20px;
        flex-direction: column; /* Cambia la dirección a columna en pantallas pequeñas */
        align-items: center; /* Centra el contenido */
    }

    .image-categorias {
        width: 100%; /* Hace que la imagen sea más pequeña en dispositivos pequeños */
        border-radius: 0;
        height: auto; /* Mantiene la relación de aspecto */
    }

    .text-container-categorias {
        border-radius: 0;
        width: 100%; /* Ajusta el ancho del texto para dispositivos pequeños */
        height: auto; /* Deja que el texto ajuste su altura */
    }
    .image-categorias-2 {
        width: 100%; /* Hace que la imagen sea más pequeña en dispositivos pequeños */
        border-radius: 0;
        height: auto; /* Mantiene la relación de aspecto */
        left: 0;
    }

    .text-container-categorias-2 {
        border-radius: 0;
        width: 100%; /* Ajusta el ancho del texto para dispositivos pequeños */
        height: auto; /* Deja que el texto ajuste su altura */
        margin-bottom:0;
    }
}
    .timeline {
        position: relative;
        max-width: 900px;
        margin: auto;
    }

    /* Línea central */
    .timeline::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        width: 4px;
        height: 100%;
        background-color: #368697;
        transform: translateX(-50%);
    }

    .timeline-item {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        margin-bottom: 40px;
    }

    /* Alinear los eventos a los lados */
    .timeline-item.left {
        justify-content: flex-start;
    }

    .timeline-item.right {
        justify-content: flex-end;
    }

    /* Contenido de los eventos */
    .timeline-content {
        width: 40%;
        background: white;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    }

    /* Íconos en la línea central */
    .timeline-icon {
        width: 70px;
        height: 70px;
        /*background-color: #368697;*/
        border-radius: 50%;
        /*border: 3px solid #368697;*/
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
        color: white;
        /*position: absolute;
        left: 50%;
        transform: translateX(-50%);
        */
    }
    
    .btn{
        border-radius: 18px;
    }

    /* Estilos de texto */
    .timeline-content h5 {
        margin: 0;
        font-size: 1.2rem;
    }

    .timeline-content p {
        font-size: 1.3rem;
        /*color: #555;*/
    }

    .timeline-date {
        font-size: 0.9rem;
        color: #888;
    }

    /* 📱 Responsividad en móviles */
    @media (max-width: 768px) {
        .timeline::before {
            left: 20px; /* Mueve la línea a la izquierda */
        }

        .timeline-item {
            flex-direction: column;
            align-items: flex-start;
        }

        .timeline-content {
            width: 90%;
        }

        .timeline-icon {
          position: absolute;
            left: 3px;
            bottom: 3px;
            transform: none;
            width: 50px;
            height: 50px;
        }
    }
    
    .timelinebg{
        background: #ffffff;
    }
.whatsapp-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: #25D366; /* Color verde de WhatsApp */
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1500;
}

.whatsapp-button i {
    margin-left: 10px;
}
/* Estilos del preloader */
#preloader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
    transition: opacity 0.5s ease-out; /* Transición suave */
}

/* Contenedor del logo y texto */
.loader-content {
    text-align: center;
}

/* Estilo del logo */
.logo {
    width: 200px; /* Ajusta el tamaño según tu necesidad */
    height: auto;
    animation: fadeIn 1s ease-in-out;
}

/* Texto "Cargando..." */
#preloader p {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    animation: blink 1.5s infinite;
}

/* Animación de parpadeo para el texto */
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Animación de entrada */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}
main {
    flex: 1;
    padding-bottom: 20px;
}

footer {
    background-color: #f8f9fa;
    padding: 20px;
    text-align: center;
    width: 100%;
}

.parallax-header {
    background-image: url('tu-imagen-de-fondo.jpg'); /* Reemplaza con la URL de tu imagen */
    height: 40vh; /* Altura fija para el header */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo negro con transparencia */
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-header h1 {
    font-size: 3rem; /* Tamaño del texto del título */
    margin: 0;
}
:root {
  --color-primary: #368697;
  --color-primary-dark: #6d888f;
  --color-primary-light: #b1c7cd;
}

.bg-primary {
  background-color: var(--color-primary) !important;
}

.btn-primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary-dark);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.text-primary {
  color: var(--color-primary) !important;
}

.border-primary {
  border-color: var(--color-primary) !important;
}

.hero-contact {
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Asegura que la imagen de fondo cubra todo el espacio */
.object-fit-cover {
  object-fit: cover;
}

/* Efecto parallax opcional */
@media (min-width: 992px) {
  .hero-contact {
      background-attachment: fixed;
  }
}

/* Animaciones */
.animate__animated {
  --animate-duration: 1s;
}

.contact-icon {
  color: var(--color-primary);
  font-size: 1.75rem;
}

.form-control:focus, .form-select:focus {
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 0.25rem rgba(143, 169, 176, 0.25);
}

.social-links a {
  color: var(--color-primary);
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(143, 169, 176, 0.1);
}

.social-links a:hover {
  background-color: var(--color-primary);
  color: white;
  transform: translateY(-3px);
}

/* Efectos para tarjetas de producto */
.product-card {
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    border: 1px solid rgba(0,0,0,0.1);
  }
  
  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .product-image-wrapper {
    height: 90%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .product-image-wrapper img {
    object-fit: contain;
    max-height: 100%;
    max-width: 100%;
    transition: transform 0.3s ease;
  }
  
  .product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
  }
  
  /* Estilos para el rating */
  .text-warning {
    color: #ffc107 !important;
  }
  
  /* Hero section */
  .hero-subcategory {
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
    margin-bottom: 2rem;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .product-image-wrapper {
      width: 90%;
    }
    
    .hero-subcategory {
      padding: 2rem 0;
    }
    
    .hero-subcategory h1 {
      font-size: 2rem;
    }
  }
  /* Gallery Styles */
.product-gallery {
    border: 1px solid #eee;
    border-radius: 0.5rem;
    overflow: hidden;
    background-color: #f9f9f9;
    text-align: center;
    padding: 1rem;
  }
  
  .product-gallery img {
    max-height: 400px;
    width: auto;
    margin: 0 auto;
  }
  
  .thumbnails img {
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .thumbnails img:hover {
    opacity: 0.8;
  }
  
  /* Rating System */
  .rating-input i {
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.2s;
  }
  
  .rating-input i:hover {
    transform: scale(1.1);
  }
  
  /* Product Tabs */
  .nav-tabs .nav-link {
    font-weight: 500;
    color: #495057;
  }
  
  .nav-tabs .nav-link.active {
    font-weight: 600;
    border-bottom: 3px solid #0d6efd;
  }
  
  /* Related Products */
  .related-products .card {
    transition: transform 0.3s ease;
  }
  
  .related-products .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .product-gallery img {
      max-height: 300px;
    }
    
    .product-title {
      font-size: 1.5rem;
    }
  }
  /* Hero Section */
.hero-contact {
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
    margin-bottom: 2rem;
  }
  
  /* Form Styles */
  .form-control, .form-select {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
  }
  
  .form-control:focus, .form-select:focus {
    border-color: #4ca1af;
    box-shadow: 0 0 0 0.25rem rgba(76, 161, 175, 0.25);
  }
  
  /* Contact Info Cards */
  .card {
    border-radius: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
  }
  
  /* Social Icons */
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #f8f9fa;
    border-radius: 50%;
    color: #4ca1af;
    transition: all 0.3s ease;
  }
  
  .social-links a:hover {
    background-color: #4ca1af;
    color: white;
    transform: translateY(-3px);
  }
  
  /* Map Container */
  .map-container {
    border-radius: 0.75rem;
    overflow: hidden;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .hero-contact {
      padding: 2rem 0;
    }
    
    .hero-contact h1 {
      font-size: 2rem;
    }
    
    .contact-info-item {
      margin-bottom: 1.5rem;
    }
  }
  .pricing-card {
    border-radius: 15px;
    transition: all 0.3s ease;
    overflow: hidden;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.pricing-header {
  padding: 2rem;
  background: linear-gradient(135deg, #5f7c84 0%, #368697 100%);
  color: white;
}
.pricing-popular {
  background: linear-gradient(135deg, #368697 0%, #c7d7de 100%);
}
.price {
    font-size: 3rem;
    font-weight: 700;
}
.period {
    font-size: 1rem;
    opacity: 0.8;
}
.benefit-item {
    margin-bottom: 0.5rem;
}
.btn-pricing {
    border-radius: 50px;
    padding: 0.5rem 2rem;
    font-weight: 600;
    transition: all 0.3s;
}
.divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 1.5rem 0;
}
.popular-badge {
    position: absolute;
    top: 2px;
    right: 10px;
    background-color: #ffc107;
    color: #368697;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
.hero-subcategory {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Opcional: efecto parallax */
  min-height: 400px; /* Altura mínima del hero */
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Efecto overlay para mejorar legibilidad del texto */
.hero-subcategory::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Ajusta opacidad según necesidad */
  z-index: 1;
}

/* Contenedor del contenido para posicionar sobre el overlay */
.hero-subcategory > * {
  position: relative;
  z-index: 2;
}

/* Responsividad para móviles */
@media (max-width: 768px) {
  .hero-subcategory {
      background-attachment: scroll; /* Desactiva parallax en móviles */
      min-height: 300px;
  }
}
.btn-warning {
  background: linear-gradient(135deg, #368697 0%, #c7d7de 100%);
  border: none;
  color: #ffffff;
}

.btn-warning:hover {
  background: linear-gradient(135deg, #6d8a91 0%, #368697 100%);
}

.btn-outline-primary {
  border-color: #368697;
  color: #368697;
}

.btn-outline-primary:hover {
  background-color: #368697;
  border-color: #6d8a91;
  color: #ffffff;
}
/* Contenedor principal */
.floating-menu {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  transition: all 0.4s ease;
}

/* Botón principal */
.main-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #368697;
  color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.main-button:hover {
  background-color: #6d888f;
  transform: scale(1.1);
}

/* Menú de botones secundarios - ahora será vertical */
.menu-buttons {
  position: absolute;
  bottom: 70px; /* Posición arriba del botón principal */
  right: 0;
  width: 60px;
  height: auto;
  transition: all 0.4s ease;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

/* Estado expandido */
.floating-menu.expanded .menu-buttons {
  width: 60px;
  height: auto;
  padding-bottom: 15px; /* Espacio adicional */
}

/* Botones secundarios */
.menu-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  color: #368697;
  border: 2px solid #368697;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(20px);
  position: relative;
}

/* Estilos específicos para botones con color */
.menu-button.whatsapp {
  background-color: #25D366;
  color: white;
  border: none;
}

.menu-button.facebook {
  background-color: #1877F2;
  color: white;
  border: none;
}

.menu-button.tiktok {
  background-color: #000000;
  color: white;
  border: none;
}

.menu-button.youtube {
  background-color: #FF0000;
  color: white;
  border: none;
}

.menu-button.phone {
  background-color: #368697;
  color: white;
  border: none;
}

/* Animación de aparición */
.floating-menu.expanded .menu-button {
  opacity: 1;
  transform: translateX(0);
}

/* Efecto hover */
.menu-button:hover {
  transform: scale(1.1) translateX(0) !important;
}

/* Texto descriptivo */
.menu-button .btn-text {
  position: absolute;
  right: 60px;
  white-space: nowrap;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.menu-button:hover .btn-text {
  opacity: 1;
  transform: translateX(0);
}

/* Animaciones */
@keyframes slideIn {
  from { transform: translateX(20px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.floating-menu.expanded .menu-button {
  animation: slideIn 0.3s ease forwards;
}

/* Retrasos para animación escalonada */
.floating-menu.expanded .menu-button:nth-child(1) { animation-delay: 0.1s; }
.floating-menu.expanded .menu-button:nth-child(2) { animation-delay: 0.2s; }
.floating-menu.expanded .menu-button:nth-child(3) { animation-delay: 0.3s; }
.floating-menu.expanded .menu-button:nth-child(4) { animation-delay: 0.4s; }
.floating-menu.expanded .menu-button:nth-child(5) { animation-delay: 0.5s; }

/* Efecto de pulso para el botón principal */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(143, 169, 176, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(143, 169, 176, 0); }
  100% { box-shadow: 0 0 0 0 rgba(143, 169, 176, 0); }
}

.floating-menu.loaded .main-button {
  animation: pulse 2s infinite;
}
  /* Efecto parallax */
  .contact-parallax {
    padding: 100px 0px 50px 40px;
    position: relative;
    min-height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
  }
  
  /* Overlay para mejorar legibilidad */
  .parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
  }
  
  /* Contenedor de contenido con efecto vidrio */
  .glass-container {
    background: rgba(247, 247, 247, 0.512);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 0 15px 15px 0;
    border-left: 5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    height: 100%;
  }
  
  /* Estilos responsivos */
  @media (max-width: 992px) {
    .glass-container {
      border-radius: 0;
      border-left: none;
      border-top: 5px solid rgba(255, 255, 255, 0.3);
    }
    
    .contact-parallax {
        padding: 0;
      background-attachment: scroll;
    }
  }
  
  /* Estilos para los elementos de información */
  .info-item {
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
  }
  
  .info-item:hover {
    transform: translateX(5px);
  }
  
  .info-icon {
    font-size: 1.5rem;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
  }
  
  .random-phone-badge {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 15px;
    display: inline-block;
    transition: all 0.3s ease;
  }
  
  .random-phone-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
  }
    /* Barra superior de teléfonos - Versión mejorada */
  /* Barra superior de teléfonos - Versión corregida */
  .top-phone-bar {
    background-color: #368697;
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed; /* Cambiado a fixed */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040; /* Mayor que el navbar (normalmente 1030) */
    width: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
      /* Resto de tus estilos permanecen igual */
  .phone-link {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
  }
  
  .phone-link:hover {
    color: #f8f9fa;
    transform: translateY(-2px);
  }
  
  .phone-link i {
    margin-right: 5px;
    font-size: 1rem;
  }
  
  .current-phone {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 3px 10px;
    border-radius: 20px;
    animation: pulsePhone 2s infinite;
  }
  
  @keyframes pulsePhone {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
  }
  
  @media (max-width: 768px) {
    .top-phone-bar {
      font-size: 0.8rem;
      padding: 6px 0;
      text-align: center;
    }
    
    .phone-link {
      margin: 0 5px;
    }
    
    .phone-link i {
      display: none;
    }
    
    /* Ajuste responsive para el navbar */
    .navbar {
      margin-top: 36px !important; /* Menor espacio en móviles */
    }
  }
          /* Imagen como patrón repetido */
          .image-pattern {
            
            background-repeat: repeat;
            background-size: 200px 200px;
            /* Ajusta el tamaño del patrón */
            background-position: 0 0;
        }

        /* Alternativa: Patrón más pequeño */
        .image-pattern-small {
            
            background-repeat: repeat;
            background-size: 100px 100px;
            background-position: 0 0;
        }

        /* Alternativa: Patrón más grande */
        .image-pattern-large {
            
            background-repeat: repeat;
            background-size: 300px 300px;
            background-position: 0 0;
        }

        /* Alternativa: Patrón con espaciado */
        .image-pattern-spaced {
            background-repeat: space;
            background-size: 150px 150px;
            background-position: center;
        }

        /* Alternativa: Patrón en diagonal */
        .image-pattern-diagonal {
            
            background-repeat: repeat;
            background-size: 150px 150px;
            background-position: 0 0;
            transform: rotate(45deg);
            transform-origin: center;
        }
                /* Resplandor suave y sutil */
                .glow-soft {
                  text-shadow: 0 0 15px rgb(54 134 151);
              }
      
              /* Resplandor azul elegante */
              .glow-blue {
                  text-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
              }
      
              /* Resplandor dorado */
              .glow-gold {
                  text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
              }
      
              /* Resplandor verde */
              .glow-green {
                  text-shadow: 0 0 15px rgba(34, 197, 94, 0.4);
              }
      
              /* Resplandor múltiple (más intenso) */
              .glow-multiple {
                  text-shadow: 
                      0 0 5px rgba(255, 255, 255, 0.2),
                      0 0 10px rgba(255, 255, 255, 0.2),
                      0 0 15px rgba(255, 255, 255, 0.2);
              }
      
              /* Resplandor con color específico */
              .glow-purple {
                  text-shadow: 
                      0 0 10px rgba(147, 51, 234, 0.4),
                      0 0 20px rgba(147, 51, 234, 0.3);
              }
      
              /* Resplandor animado */
              .glow-animated {
                  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
                  animation: glow-pulse 2s ease-in-out infinite alternate;
              }
      
              @keyframes glow-pulse {
                  from {
                      text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
                  }
                  to {
                      text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
                  }
              }
      
              /* Resplandor con hover */
              .glow-hover {
                  text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
                  transition: text-shadow 0.3s ease;
                  cursor: pointer;
              }
      
              .glow-hover:hover {
                  text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
              }
      
              /* Resplandor neón */
              .glow-neon {
                  text-shadow: 
                      0 0 5px #fff,
                      0 0 10px #fff,
                      0 0 15px #ff00ff,
                      0 0 20px #ff00ff;
              }
      
              /* Resplandor muy sutil para uso general */
              .glow-subtle {
                  text-shadow: 0 0 8px rgba(255, 255, 255, 0.15);
              }
      
              .code-block {
                  background-color: #333;
                  padding: 15px;
                  border-radius: 5px;
                  font-family: monospace;
                  font-size: 0.9rem;
                  margin: 20px 0;
                  overflow-x: auto;
              }
              /* Estilos personalizados para el carrusel de reseñas */
.reviews-carousel-custom .carousel-inner {
    padding: 20px 0;
}

.reviews-carousel-custom .carousel-control-prev,
.reviews-carousel-custom .carousel-control-next {
    background: rgba(54, 134, 151, 0.1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid #368697;
    transition: all 0.3s ease;
}

.reviews-carousel-custom .carousel-control-prev {
    left: -60px;
}

.reviews-carousel-custom .carousel-control-next {
    right: -60px;
}

.reviews-carousel-custom .carousel-control-prev:hover,
.reviews-carousel-custom .carousel-control-next:hover {
    background: #368697;
    border-color: #368697;
}

.reviews-carousel-custom .carousel-control-prev-icon,
.reviews-carousel-custom .carousel-control-next-icon {
    background-size: 18px 18px;
    filter: brightness(0) saturate(100%) invert(41%) sepia(36%) saturate(906%) hue-rotate(162deg) brightness(89%) contrast(91%);
}

.reviews-carousel-custom .carousel-control-prev:hover .carousel-control-prev-icon,
.reviews-carousel-custom .carousel-control-next:hover .carousel-control-next-icon {
    filter: brightness(0) invert(1);
}

.review-card-custom {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(54, 134, 151, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(54, 134, 151, 0.1);
    height: 100%;
    overflow: hidden;
}

.review-card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(54, 134, 151, 0.2);
}

.review-header-custom {
    background: linear-gradient(135deg, #368697 0%, #2a6a78 100%);
    color: white;
    padding: 20px;
    text-align: center;
}

.review-header-custom h5 {
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
}

.user-photo-custom {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    margin: 0 auto 15px;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.user-photo-placeholder-custom {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 4px solid rgba(255, 255, 255, 0.3);
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.stars-custom {
    color: #ffd700;
    font-size: 1.2rem;
    margin: 10px 0;
}

.review-body-custom {
    padding: 20px;
}

.review-description-custom {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-images-custom {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.review-images-custom img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid rgba(54, 134, 151, 0.2);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.review-images-custom img:hover {
    transform: scale(1.1);
    border-color: #368697;
}

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

.section-title-custom {
    color: #368697;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle-custom {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.average-rating-custom {
    background: linear-gradient(135deg, #368697 0%, #2a6a78 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(54, 134, 151, 0.2);
}

.average-number-custom {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
}

.average-stars-custom {
    font-size: 1.5rem;
    color: #ffd700;
    margin: 10px 0;
}

.review-date-custom {
    color: #999;
    font-size: 0.8rem;
    text-align: right;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .reviews-carousel-custom .carousel-control-prev,
    .reviews-carousel-custom .carousel-control-next {
        display: none;
    }
    
    .section-title-custom {
        font-size: 2rem;
    }
    
    .review-card-custom {
        margin-bottom: 20px;
    }
}



