@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap");

body {
  font-family: "Poppins", sans-serif;
  color: #32373b !important;
}

h1, h4 {
    color: #32373b !important;
}

h2 {
    font-size: 42px;
    color: #c89833!important;
    line-height: 0.9em;
    font-weight: 500;
}

h3 {
    font-size: 36px;
    color: #c89833!important;
    line-height: 0.9em;
    font-weight: 500;

}

p{
    font-size: 17px;
}

.text-justify {
    text-align: justify;
}

.imag-pro {
    width: 100%;
    height: auto;
}
.imag-pro.r {
    position: relative; /* o 'absolute' si prefieres */
    z-index: 2;
}

:root {
--navbar-padding-y: 20px;
--navbar-sticky-padding-y: 10px;
--btn-height: 36px;
--cta-btn-height: 40px;
--flag-btn-size: 32px;
--sidebar-width: 65%;
}
        
/* Estructura para footer abajo */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Logos responsivos */
.logo-desktop {
    display: block;
    width: 135px;
    height: auto;
}

.logo-mobile {
    display: none;
    height: 35px;
    width: auto;
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
.content {
    flex: 1;
}
        
/* Navbar Sticky */
.navbar {
    padding-top: var(--navbar-padding-y);
    padding-bottom: var(--navbar-padding-y);
    transition: all 0.3s ease;
    background-color: #ffffff;
}
.navbar.sticky {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1020;
    padding-top: var(--navbar-sticky-padding-y);
    padding-bottom: var(--navbar-sticky-padding-y);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
       
/* Centrado del menú */
.navbar-brand {
    margin-right: 0;
}
.navbar-nav {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
        
/* Estilos del menú */
.nav-link {
    position: relative;
    padding: 0.5rem 1rem !important;
    color: #32373b !important;
    transition: all 0.2s;
}
.nav-link:hover, .nav-link:focus {
    color: #f8621d !important;
}
.nav-link.active {
    color: #CD9D3A !important;
    font-weight: 600;
}
.nav-link.active::after {
    
    position: absolute;
    bottom: -4px; /* Ajustado para que no quede tan lejos */
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: #0d6efd;
    border-radius: 50%;
}

nav ul li {
    position: relative;
  }

  nav ul li ul {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

nav ul li:hover ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

        
        /* Dropdown */
.dropdown-menu {
    border: none;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}
.dropdown-item {
    padding: 0.5rem 1.5rem;
}
.dropdown-item:hover, .dropdown-item:focus {
    background-color: #f8f9fa;
    color: #0d6efd;
}
/* Sidebars */
.main-sidebar {
    width: var(--sidebar-width) !important;
    z-index: 9999;
}
.flags-sidebar {
    width: 25% !important;
    z-index: 9998;
}

@media (max-width: 576px){
    .flags-sidebar {
        width: var(--sidebar-width) !important;
        z-index: 9998;
    }
    .login-btn {
        width: 33px !important;
        padding: 0;
        border-radius: 50%;
        color: #ffffff;
        border: 0px solid #dee2e6;
    }
    .mt-8 {
        margin-top: 0px !important;
    }
    .mt-9 {
        margin-top: 0px !important;
    }
}

.offcanvas-body {
    display: flex;
    flex-direction: column;
    padding: 0;
}
.mobile-menu {
    flex: 1;
}
.mobile-profile-btn {
    margin-top: auto;
    padding: 1rem;
    border-top: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
}
.flag-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}

.activelst {
    background-color: #686e86;
    color: #ffffff;
}

.activelst:hover {
    background-color: #faa54f;
}

.list-group-item {
    border: none;
}

/* Grupo de iconos */
.action-group {
    display: flex;
    align-items: center;
    gap: 12px;
}
.action-btn {
    height: var(--btn-height);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    transition: all 0.2s;
}
.login-btn {
    width: var(--btn-height);
    padding: 0;
    border-radius: 50%;
    color: #ffffff;
    border: 0px solid #dee2e6;
    background-color: #a58647;
}
.login-btn:hover {
    color: #ffffff;
    background-color: #725c31;
}


.mobile-menu {
    flex: 1;
}
.flag-btn {
    width: var(--flag-btn-size);
    height: var(--flag-btn-size);
    padding: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #dee2e6;
}
.flag-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.odin-btn {
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 50%;
    overflow: hidden;
    
}
.odin-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-oding {
    color: #c99122;
}

.text-org {
    color: #FF8000;
}

.profile-btn {
    display: flex;
    align-items: center;
    gap: 8px; /* Espaciado entre la medalla y el texto */
    background-color: #f7f7f7;
    border: none;
    cursor: pointer;
    padding: 0px 14px 0px 0px; /* Ajusta el padding para que el círculo quede pegado */
    color: #444444;
    border: #e0e0e0 1px solid;
}

.profile-btn span:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px; /* Tamaño del círculo */
    height: 34px;
    background-color: #505567; /* Gris oscuro */
    color: #ffffff; /* Color del emoji */
    border-radius: 50%; /* Hace que sea un círculo */
    font-size: 16px;
    margin-left: 0; /* Asegura que no tenga margen */
}

.profile-btn:hover {
background-color: #d6ae5d;
color: #ffffff;
border: #C2AE72 1px solid;
}
.cta-btn {
    height: var(--cta-btn-height);
    background-color: #0d6efd;
    color: #ffffff;
    font-weight: 500;
    gap: 8px;
}
.cta-btn:hover {
    background-color: #0b5ed7;
    color: white;
}
        
/* Hamburguesa personalizada */
.navbar-toggler {
    border: none !important;
    padding: 0;
    
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-toggler-icon {
    background-image: none !important;
    position: relative;
    width: 24px;
    height: 2px;
    background-color: #927741;
    transition: all 0.3s;
}
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #927741;
    left: 0;
    transition: all 0.3s;
}
.navbar-toggler-icon::before {
    top: -7px;
}
.navbar-toggler-icon::after {
    top: 7px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
}
        
/* Footer */
footer {
    background-color: #ff8000;
    padding: 3rem 0;
    color: #ffffff;
}
        
/* Responsive */
@media (max-width: 991.98px) {
    .logo-desktop {
        display: none;
    }
    .logo-mobile {
        display: block;
        order: -1;
    }
    .navbar-nav {
        margin: 1rem 0;
        flex-direction: column;
        align-items: stretch;
    }
    .navbar-toggler {
        order: 1;
        margin: 0 auto;
        color: #D6AE5D !important;
    }
    .action-group {
        order: 2;
        margin-left: auto;
        margin-right: 0rem;
        gap: 8px;
    }
    .action-btn {
        height: 32px;
        font-size: 0.8125rem;
    }
}

/* Fondo del loader */
#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Spinner estilo Bootstrap */
.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 0, 0, 0.2);
    border-top-color: #D6AE5D;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Animación del spinner */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.limited-text {
    display: inline-block;
    max-width: 9ch; /* Limita a 10 caracteres */
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.section-prom {
    padding: 90px 0px;
}
.section-test {
    padding: 90px 0px;
}

.section-dark {
    padding: 90px 0px !important;
    background-color: #24262e;
}

.bg-darknano {
    padding: 20px;
    background-color: #24262e;
}

.section-purple {
    padding: 90px 0px !important;
    background-color: #002537;
}
.section-bluespark {
    padding: 30px 0px !important;
    background-color: #002537;
}

.section-bluetwo{
    padding: 30px 0px 0px 0px;
    background: rgb(1,134,177);
background: radial-gradient(circle, rgba(1,134,177,1) 28%, rgba(0,56,102,1) 100%);    
}

.text-luquid {
   color: #3ecfff;
}
.backbody {
    background-image: url('../images/content/backgroun2.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }

.section-vacc {
    position: relative;
    padding: 160px 0px;
    background-image: url('../images/content/vacuna.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    z-index: 1;
}

.zone-sect {
    background-image: url('../images/content/backgroun.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }

.section-darkp {
    background-image: url('../images/content/background-dark.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 90px 0px;
  }

.section-befy {
    background-image: url('../images/content/backbenefits.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 60px 0px 0px 0px;
  }

  .section-product {
    background-image: url('../images/content/back-products.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 60px 0px 0px 0px;
  }
  .section-testimony {
    background-image: url('../images/content/back-testimonios.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 60px 0px 0px 0px;
  }

  .section-wis {
    background-image: url('../images/content/back-whatis.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 60px 0px 0px 0px;
  }


@media (max-width: 560px) {
    .section-befy {
        background-image: url('../images/content/backbenefits.jpg');
        background-size: cover;
        background-position: top left;
        background-repeat: no-repeat;
        padding: 60px 0px 0px 0px;
      }
      .section-wis {
        background-image: url('../images/content/back-whatis.jpg');
        background-size: cover;
        background-position: top left;
        background-repeat: no-repeat;
        padding: 60px 0px 0px 0px;
      }
}
.section-vacc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(36, 38, 46, 0.7); /* Color con transparencia */
    mix-blend-mode: multiply;
    z-index: -1;
}

.mt-8 {
    margin-top: 70px;
}
.mt-9 {
    margin-top: 90px;
}

.title-b {
    color: #FF8000 !important;
}

.subtitle {
    color:#8f6d26 !important;
}

.title-ba {
    color: #ffd044 !important;
}

.title-t {
    color: #6D00D9;
}

.text-bluelec {
    color: #009FD5 !important;
    font-weight: 600;
}

.btn-odin {
    background-color: #FF8000;
    color: #ffffff;
    border: none;
    font-size: 18px;
    padding: 10px 10px 10px 25px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}
.btn-odin .icon {
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    margin-left: 0;
}
.btn-odin:hover {
    padding-right: 35px;
    padding-left: 35px;
    background-color: #FF8000;
    color: #ffffff;
}
.btn-odin:hover .icon {
    opacity: 1;
    transform: translateX(0);
    margin-left: 10px;
}

.btn-odinpro {
    background-color: #00AFEA;
    color: #ffffff;
    border: none;
    font-size: 18px;
    padding: 10px 10px 10px 25px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}
.btn-odinpro .icon {
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    margin-left: 0;
}
.btn-odinpro:hover {
    padding-right: 35px;
    padding-left: 35px;
    background-color: #0099CC;
    color: #ffffff;
}
.btn-odinpro:hover .icon {
    opacity: 1;
    transform: translateX(0);
    margin-left: 10px;
}

.btn-what {
    background-color: #85B200;
    color: #ffffff;
    border: none;
    font-size: 18px;
    padding: 10px 10px 10px 25px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}
.btn-what .icon {
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    margin-left: 0;
}
.btn-what:hover {
    padding-right: 35px;
    padding-left: 35px;
    background-color: #698C00;
    color: #ffffff;
}
.btn-what:hover .icon {
    opacity: 1;
    transform: translateX(0);
    margin-left: 10px;
}

.btn-whatpro {
    background-color: #85B200;
    color: #ffffff;
    border: none;
    font-size: 18px;
    padding: 10px 10px 10px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}
.btn-whatpro .icon {
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    margin-left: 0;
}
.btn-whatpro:hover {
    padding-right: 18px;
    padding-left: 18px;
    background-color: #698C00;
    color: #ffffff;
}
.btn-whatpro:hover .icon {
    opacity: 1;
    transform: translateX(0);
    margin-left: 10px;
}

.btn-test {
    background-color: #FF8000;
    color: #ffffff;
    border: none;
    font-size: 18px;
    padding: 10px 10px 10px 25px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}
.btn-test .icon {
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    margin-left: 0;
}
.btn-test:hover {
    padding-right: 35px;
    padding-left: 35px;
    background-color: #c56300;
    color: #ffffff;
}
.btn-test:hover .icon {
    opacity: 1;
    transform: translateX(0);
    margin-left: 10px;
}

/****/
.arrow-left-animated {
    display: inline-block;
    animation: moveLeftFade 0.5s infinite ease-in-out;
}

/* Animación de derecha a izquierda con cambio de opacidad */
@keyframes moveLeftFade {
    0% {
        transform: translateX(15px);  /* Comienza a la derecha */
        opacity: 0.25;               /* 25% de opacidad inicial */
    }
    50% {
        transform: translateX(0);    /* Posición central */
        opacity: 1;                 /* 100% de opacidad */
    }
    100% {
        transform: translateX(15px);  /* Vuelve a la derecha */
        opacity: 0.25;              /* 25% de opacidad final */
    }
}
.arrow-r-animated {
    display: inline-block;
    animation: moveRightFade 0.5s infinite ease-in-out;
}

/* Animación de derecha a izquierda con cambio de opacidad */
@keyframes moveRightFade {
    0% {
        transform: translateX(-15px);  /* Comienza a la derecha */
        opacity: 0.25;               /* 25% de opacidad inicial */
    }
    50% {
        transform: translateX(0);    /* Posición central */
        opacity: 1;                 /* 100% de opacidad */
    }
    100% {
        transform: translateX(-15px);  /* Vuelve a la derecha */
        opacity: 0.25;              /* 25% de opacidad final */
    }
}

.typewriter {
    border-right: 3px solid #000; /* Cursor de tipo máquina de escribir */
    white-space: nowrap; /* Evita saltos de línea */
    overflow: hidden; /* Oculta el texto que sobresale */
    display: inline-block;
    vertical-align: bottom;
}

/* Animación del cursor parpadeante */
.typewriter.blink {
    animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #000; }
}

/* Estilos para el acordeón horizontal */
.horizontal-accordion {
    display: flex;
    height: 500px;
    width: auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.accordion-item {
    position: relative;
    flex: 1;
    background-size: cover;
    background-position: center;
    transition: all 500ms ease-in-out;
    overflow: hidden;
    cursor: pointer;
}

.accordion-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    transition: all 300ms ease;
}

.accordion-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    opacity: 0;
    transition: all 300ms ease 100ms;
    transform: translateY(100px);
    max-width: 80%;
    z-index: 3;
}

/* Comportamiento para desktop (hover) */
@media (hover: hover) and (pointer: fine) {
    .accordion-item:hover {
        flex: 5;
    }
    
    .accordion-item:hover::before {
        background: rgba(0, 0, 0, 0);
    }
    
    .accordion-item:hover .accordion-content {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Comportamiento para móviles (touch) */
@media (max-width: 576px) {
    .horizontal-accordion {
        flex-direction: column;
        height: auto;
    }
    
    .accordion-item {
        width: 100% !important;
        height: 70px !important; /* Altura inicial */
        flex: 0 0 auto !important; /* Override cualquier flex existente */
        min-height: 70px !important;
    }
    
    .accordion-item.active {
        height: 300px !important; /* Altura expandida */
        flex: 0 0 auto !important;
    }
    
    .accordion-item.active::before {
        background: rgba(0, 0, 0, 0);
    }
    
    .accordion-item.active .accordion-content {
        opacity: 1;
        transform: translateY(0);
    }
    .image-dive {
        width: 100% !important;
        height: auto !important;
    }
}

.text-shadow {text-shadow: 0px 3px 3px rgba(0,0,0,0.6);}
blockquote {
    padding: 1.5rem 1rem;
    margin: 1rem auto;
    background: white;
    border-left: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    max-width: 100%;
    font-size: 1em;
    line-height: 1.3;
    border-radius: 8px;
}

blockquote:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #ff8a00, #da1b60);
    border-radius: 8px 0 0 8px;
}

.zone-explain {
    padding: 15px;
    background-color: #009FD5;
    color: #ffffff !important;
    border-radius: 10px;
}

.lab-odin {
    border-radius: 5px 190px 250px 250px;
}

.bullet-ico {
    color: #00BFFF;
}

.step-list {
    counter-reset: step;
  }
  .step-item {
    counter-increment: step;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
  }
  .step-item::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background-color: #009FD5; /* Bootstrap primary */
    color: white;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
  }

   /* Sección con partículas */
.section-dark-p {
    position: relative;
    color: white;

    /*overflow: hidden;*/
}
.particles {
    background-color: #1a1a1a;
}

.particles-blu {
    background-color: #001c2b;
}
/* Contenedor de partículas */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

/* Contenido sobre las partículas */
.particles-content {
    position: relative;
    z-index: 1;
}

/* Color dorado para títulos */
.gold-text {
    color: #c89833;
}

.content-nano {
    z-index: 4;
}

.powert{
    background-color: #24262e;
    padding: 40px;
    border-radius: 10px;
}

.recimg {
    border: 1px #D6AE5D solid;
    padding: 20px;
    border-radius: 13px;
}

.bloq-inf {
    border: 1px #D6AE5D solid;
    padding: 20px;
    border-radius: 13px;
}

.bg-form {
    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 13px;
    padding: 25px;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
  }
  
  .form-control {
    border: none;
    border-bottom: 2px solid #ccc; 
    border-radius: 0;
    padding: 10px 0;
    background: transparent;
    width: 100%;
    font-size: 16px;
    color: #333; 
  }
  
  .form-control:focus {
    outline: none;
    border-bottom-color: #b17a04; 
  }
  
  /* Estilos para el label flotante */
  .floating-label {
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 16px;
    color: #666; 
    pointer-events: none;
    transition: all 0.3s ease;
  }
  
  /* Efecto cuando el campo está enfocado o tiene contenido */
  .form-control:focus ~ .floating-label,
  .form-control:not(:placeholder-shown) ~ .floating-label,
  .form-control.has-content ~ .floating-label {
    top: -10px;
    font-size: 12px;
    font-weight: 500;
    color: #b17a04; /* Color del label flotante */
  }
  
  /* Línea base */
  .line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ccc; 
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .form-control:focus ~ .line {
    transform: scaleX(1);
    background-color: #FF5C26; 
  }
  .title-sect-form {
    color: #b17a04;
  }
  /**** Boton enviar ******/
  .btn-sending {
    background-color: #197dff;
    border-color: #197dff;
    color: #ffffff;
    font-weight: 600;
    box-shadow: 1px 10px 24px -6px rgba(0, 0, 0, 0.41);
    -webkit-box-shadow: 1px 10px 24px -6px rgba(0, 0, 0, 0.41);
    -moz-box-shadow: 1px 10px 24px -6px rgba(0, 0, 0, 0.41);
    
  }
  
  .btn-sending:hover {
    background-color: #0570fc;
    border-color: #0570fc;
    color: #fff;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
  }
  
  .btn-sending:active,
  .btn-sending:focus {
    background-color: #0058cc;
    border-color: #0058cc;
    box-shadow: 0 0 0 0.2rem rgba(255, 152, 0, 0.5);
  }
  
  .btn-sending:disabled {
    background-color: #ffcc80;
    border-color: #ffb74d;
    color: #fff;
    opacity: 0.65;
  }
  .input-group-text {
    background-color: #4d02d8 !important;
    color: #fff !important;
  }
  
  .form-control:focus {
    border: #120130 0px solid !important;
    border-color: #9f6cfd !important;
    box-shadow: none !important;
  }
  
  .form-select:focus {
    border-color: #9f6cfd !important;
    box-shadow: none !important;
  }
  
  .form-select {
    border: 1px solid rgba(132, 65, 255, 0.478) !important;
  }

  .btn-sending {
    position: relative; /* Necesario para posicionar el icono */
    padding-left: 2.5rem !important; /* Espacio para el icono */
}

.animated-down {
    position: absolute;
    left: 1.0rem;
    animation: bounceWithOpacity 0.3s infinite alternate ease-in-out;
}

@keyframes bounceWithOpacity {
    0% {
        transform: translateY(-5px);
        opacity: 0.2;
    }
    100% {
        transform: translateY(2px);
        opacity: 1;
    }
}
/*****Video*****/

/* Estilos generales para las tarjetas de video */
.video-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.thumbnail-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.thumbnail-wrapper img {
    transition: transform 0.3s ease;
    width: 100%;
    height: auto;
    display: block;
}

.video-card:hover .thumbnail-wrapper img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    pointer-events: none;
}

.video-card:hover .play-button {
    color: #fff;
    transform: scale(1.1) translate(-45%, -45%);
}

/* Estilos del lightbox (igual que antes) */
.video-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    position: relative;
    width: 80%;
    height: 90vh;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
}

.lightbox-content video {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    
    /* Centrado vertical y horizontal */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 2rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #ccc;
}

@media (max-width: 768px) {
    .play-button {
        font-size: 3rem;
    }
    
    .lightbox-content {
        max-width: 95%;
    }
}

/* Contenedor flotante */
.social-buttons {
    transform: translateY(-30%);
    display: flex;
    flex-direction: row;
    gap: 4px;
    z-index: 999;
  }
  
  
  /* Estilo de los botones */
  .social-buttons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    color: #333333;
    text-decoration: none;
    
    /* Botón cuadrado */
    transition: all 0.3s ease;
  }
  
  /* Efecto hover */
  .social-buttons a:hover {
    color: #00A9E1;
  }
  
  /* Iconos blancos */
  .social-buttons i {
    font-size: 30px;
  }
  
  @media (max-width: 576px) {
    .social-buttons a {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 50px;
      height: 50px;
      color: #333333;
      text-decoration: none;
      transition: all 0.3s ease;
    }
  
    .social-buttons i {
      font-size: 28px;
    }
  
    .social-buttons {
      gap: 4px;
    }
  }

  .whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .whatsapp-button:hover {
    background-color: #1ebe5d;
  }
  
  .whatsapp-button i {
    font-size: 28px;
  }
  
  .btn-purple {
    background-color: #FF8000; /* Bootstrap purple base */
    color: #fff;
    border: none;
    padding: 0.8rem 1.2rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease-in-out;
  }
  
  .btn-purple:hover {
    background-color: #FFBF00;
    color: #252525;
    text-decoration: none;
  }
  
  .btn-purple:focus,
  .btn-purple:active {
    background-color: #FFBF00;
    color: #fff;
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(111, 66, 193, 0.5);
  }
  
  .btn-purple:disabled {
    background-color: #bfa4e0;
    color: #eee;
    cursor: not-allowed;
    opacity: 0.7;
  }
  