/* Reset básico */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap");

* {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
}

@media (max-width: 768px) {
    .desktop-menu {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background: #fff;
        z-index: 100;
        padding: 10px;
    }
}

#franja {
    width: 100%;
    height: 40px;
    background-color: #388800;
    position: fixed;
    z-index: 20;
}
/* el menu no se adapta a la pantalla, lo limitas a cierto ancho */
#header {
    background: #ffffff;
    width: 100%;
    /* max-width: 1300px; */
    color: rgb(0, 0, 0);
    position: fixed;
    top: 32.5px;
    z-index: 21;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    border-bottom: #3a8d4b 2px solid;
}

@media (max-width: 768px) {
    .header-container {
        width: auto;
    }
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 80px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
}

.desktop-menu a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s;
}

.desktop-menu a:hover {
    color: #33a335;
}

.desktop-menu a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    transition: width 0.3s;
}

.desktop-menu a:hover::after {
    width: 100%;
}

.section {
    background-color: #f8f8f8;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    overflow: hidden;
}

.section {
    background-color: #f8f8f8;
    min-height: min-content;
}

@media (max-width: 768px) {
    .section {
        height: auto;
        max-height: 175vh;
        margin-top: 50px;
    }
}

#inicio {
    background: #ffffff;
}

#servicios {
    background: #ffffff;
}

#portafolio {
    background: #ffffff;
}

#contacto {
    background: #ffffff;
    max-height: 1000px !important;
}

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

.containerSearch {
    position: relative;
    width: auto;
    display: inline-block;
    margin: 20px;
}

#search {
    outline: none;
    box-sizing: border-box;
    height: 40px;
    width: 0;
    padding: 0 15px;
    color: #000;
    border-radius: 25px;
    font-size: 14px;
    border: 1px solid #3a8d4b;
    transition: all 0.5s ease;
}

.btnSearch {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: #3a8d4b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.btnSearch i {
    font-size: 16px;
    color: white;
    transition: all 0.5s ease;
}

.containerSearch:hover #search,
#search {
    width: 200px;
    padding-right: 45px;
}

@media (max-width: 480px) {
    #search {
        width: 90px;
        padding-right: 45px;
    }
}

.containerSearch:hover .btnSearch i {
    transform: rotate(-360deg);
}

.btnSearch:hover {
    background: #000000;
}

@media (max-width: 480px) {
    .containerSearch {
        margin: 10px;
    }

    #search {
        height: 36px;
        font-size: 13px;
    }

    .btnSearch {
        width: 36px;
        height: 36px;
    }

    .containerSearch:hover #search,
    #search:focus,
    #search:not(:placeholder-shown) {
        width: 150px;
        padding-right: 40px;
    }
}

/* Estilos generales */
#footer {
    background-color: rgb(79, 158, 65);
    color: rgb(94, 222, 72);
    padding: 40px 0 20px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    overflow: hidden;
}

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

.copyright {
    color: #000;
    margin: 15px 0;
    font-size: 14px;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.facebook {
    background: #3b5998;
}


.x {
    background: #000000;
    
}

.instagram {
    background: #f09433;
    background: linear-gradient(
        45deg,
        #f09433 0%,
        #e6683c 25%,
        #dc2743 50%,
        #cc2366 75%,
        #bc1888 100%
    );
}

.linkedin {
    background: #0077b5;
}

.youtube {
    background: #ff0000;
}

.tiktok {
    background: #000000;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-divider {
    width: 80%;
    max-width: 400px;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 20px auto;
}

@media (max-width: 768px) {
    .social-links {
        gap: 15px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .copyright {
        font-size: 13px;
    }
}

.btn-login-premium {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #55cd67 0%, #3a8d4b 100%);
    color: white;
    padding: 7px 32px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    z-index: 1;
}

@media (max-width: 954px) {
    .btn-login-premium {
        width: 50px;
        height: 60px;
        border-radius: 50%;
    }

    .btn-text {
        opacity: 0;
        width: 0;
        position: absolute;
    }

    .btn-login-premium i {
        font-size: 20px;
        margin: 0 !important;
    }
}

.desktop-menu .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.desktop-menu .nav-li {
    position: relative;
    padding: 0 15px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0;
    display: block;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #0ed500;
}

.desktop-menu .nav-li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 1px;
    background-color: #0ed500;
}

@media (max-width: 768px) {
    .desktop-menu .nav-menu {
        flex-direction: column;
    }

    .desktop-menu .nav-li:not(:last-child)::after {
        display: none;
    }

    .desktop-menu .nav-li {
        padding: 10px 0;
    }
}

.fa-shield-alt {
    width: 50px;
    height: 50px;
    background: #3498db;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.fa-shield-alt {
    transform: scale(1.1) rotate(10deg);
    background: #219829;
}

#icono-barras {
    display: none;
}

@media (max-width: 768px) {
    #icono-seguro {
        display: none;
    }

    #icono-barras {
        display: inline-block;
    }
}



/*El banner  */
.hero-banner {
    margin-top: 74px;
    position: static;
    min-height: 500px;
    overflow: hidden;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-75%, -50%);
    color: white;
    text-align: center;
    width: 90%;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.banner-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.botonStyle {
    background-color: white;
    position: relative;
    color: green ;
    padding: 1rem 2rem;
    border: none;
    right: 350px;
    top: 450px;
    border-radius: 40px;
    font-size: 2.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease-in-out; 
    animation: infinite 3s linear ease-in;
}

.botonStyle2 {
    background-color: white;
    position: relative;
    color: green ;
    padding: 1rem 2rem;
    border: none;
    right: 350px;
    top: 450px;
    border-radius: 40px;
    font-size: 2.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease-in-out; 
    animation: infinite 3s linear ease-in;
}

.botonStyle3{
    background-color: white;
    position: relative;
    color: green ;
    padding: 1rem 2rem;
    border: none;
    left:50px;
    top: 280px;
    border-radius: 40px;
    font-size: 2.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease-in-out; 
    animation: infinite 3s linear ease-in;
}


         .carousel-inner{
            height: 130vh !important;
        }
    
        @media (max-width: 768px) {
            .carousel-inner {
                height: 80vh !important;
            }
        
        }

@media (max-width: 768px) {
    .botonStyle, .botonStyle2, .botonStyle3 {
        /* Ajustes para móvil */
        font-size: 1.2rem; /* Tamaño de fuente más pequeño */
        max-width: 180px; /* Ancho máximo */
        position: relative;   
        left: auto;
        right: auto;
        top: auto;
       
    }
    
  
    .botonStyle {
         right: 70px !important;
         top: 240px !important; 
    }
    .botonStyle2 {
         right: 100px !important;
         top: 200px !important; 
    }
    .botonStyle3 {
         max-width: 215px; 
         left:85px !important;
         top: 200px !important; 
    }
}


@media (max-width: 768px) {
    #slidepoliza {
        max-width: 90% !important;
        box-sizing: border-box;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .banner-content {
        width: 100%;
        transform: translate(-50%, -50%);
    }

    .banner-title {
        font-size: 2.5rem;
    }

    .banner-subtitle {
        font-size: 1.2rem;
    }
}

.banner-container {
    position: relative;
    height: 80vh;
    min-height: 400px;
}

@media (max-width: 768px) {
    .banner-container {
        height: auto!important;
    }
}
.banner-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
}

.custom-carousel .carousel-indicators {
    bottom: 20px;
}

.custom-carousel .carousel-indicators button {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 6px;
}

.custom-carousel .carousel-indicators button.active {
    background-color: white;
}

.carousel-control-prev,
.carousel-control-next {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    top: 50%;
}

.card-text {
    font-size: 15px;
    line-height: 1.6;
    color: #127034;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .card {
        max-width: 500px !important;
    }
}

.card {
    gap: 1 !important;
    border: none !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1) !important;
}

.btn_info {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    border: none;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.min-vh-md-50 {
    min-height: 50vh;
}

@media (max-width: 767.98px) {
    .min-vh-md-50 {
        min-height: auto;
        padding: 2rem 0;
    }
}

.carousel-item {
    transition: transform 0.6 s ease-in-out;
}

.card .img {
    border-radius: 30px;
}

.container {
    margin-top: 20px;
}

@media (max-width: 767.98px) {
    .carousel-item {
        border: 3px solid #0ed500 !important;
    }
}

@media (max-width: 768px) {
    p.fs-2 {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 568px) {
    #secciones {
        height: 1000px;

        min-height: 300px;
    }
}

.hijo-abajo {
    border: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: #edefed;
    color: white;
    border-radius: 0 0 30px 30px;
}

#contacto-container {
    background-color: rgb(103, 244, 225) !important;
}

.form-control {
    font-size: 0.85rem;

    padding: 0.375rem 0.5rem;
}

.form-label {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.btn {
    font-size: 0.85rem;
    padding: 0.4rem 0.75rem;
}

.map-responsive {
    overflow: hidden;
    padding-bottom: 40%;
    position: relative;
    height: 0;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

/*estilos para el chat*/

#chat-boton {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#chat-boton img {
    width: 32px;
    height: 32px;
}

#chat-boton .notificacion {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 12px;
    height: 12px;
    background: #0f0;
    border: 2px solid white;
    border-radius: 50%;
}

#chat-box {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 300px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    font-family: sans-serif;
}

#chat-box.oculto {
    display: none;
}

.chat-header {
    background: #003366;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.chat-body {
    padding: 10px;
}

.chat-body input {
    width: 100%;
    padding: 8px;
    margin-top: 10px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.chat-body button {
    width: 100%;
    padding: 8px;
    background: #003366;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* Estilo del chat box */
#chat-box {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 280px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    font-family: "Arial", sans-serif;
    overflow: hidden;
    z-index: 1000;
}

.chat-header {
    background: #25d366;
    /* Verde WhatsApp */
    color: white;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header button {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.chat-body {
    padding: 15px;
}

.chat-body p {
    margin-bottom: 15px;
    color: #333;
}

/* Estilo para el contenedor del WhatsApp */
.whatsapp-contact {
    background: #f5f5f5;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.whatsapp-contact i {
    color: #25d366;
    font-size: 24px;
    margin-right: 10px;
}

.whatsapp-contact span {
    font-weight: bold;
    color: #075e54;
}

.chat-body input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.chat-body button {
    background: #25d366;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    width: 100%;
    cursor: pointer;
}

.feature-card {
    border: 2px solid #25d366;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 80px;
    height: 80px;
    background-color: #29bc29;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(79, 209, 110, 0.3);
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #2c3e50 0%, #4caf50 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-title {
    font-size: 1.25rem;
    color: #7f8c8d;
    margin-bottom: 0;
    font-weight: 500;
}

.card-title i {
    font-size: 1.5rem;
    margin-right: 10px;

    transition: all 0.3s ease;

    vertical-align: middle;
}

.card:hover .card-title i {
    transform: scale(1.1);
    opacity: 0.9;
}

.text-green i {
    color: #28a745;
}

.text-blue i {
    color: #007bff;
}

.text-red i {
    color: #dc3545;
}

.text-purple i {
    color: #6f42c1;
}

.text-orange i {
    color: #fd7e14;
}

.text-gray i {
    color: #6c757d;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    align-items: center;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(69, 186, 65, 0.804);
}

.card:hover .card-title {
    color: #000000;
    border-bottom-color: currentColor;
}

.card-footer {
    background: transparent !important;
    border-top: none;
    padding: 0.75rem 0 0;
}

.doc-link {
    display: inline-flex;
    align-items: center;
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.doc-link i {
    font-size: 1.1rem;
    margin-right: 5px;
}

.doc-link:hover {
    color: #0056b3;
    transform: translateX(5px);
}

/* dise;o de los enlaces "de más información" */
.doc-link {
    color: #28a745;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
}

.doc-link i {
    font-size: 1.1em;
    transition: transform 0.3s ease;
}

.doc-link:hover i {
    transform: translateY(-2px);
}

.feature-card2 {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    border-radius: 20px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 1px 30px rgba(73, 163, 46, 0.916);
    z-index: 1000000;
}

.feature-card2:hover {
    transform: translateY(-10px);

    background: linear-gradient(135deg, #1a722f 0%, #166e2b 100%);
}

.circle-image-container {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: white;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2), 0 0 30px rgba(0, 0, 0, 0.15),
        inset 0 0 20px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

#circulo-particulas{
    margin-bottom: 30px !important;
}

.circle-inner-glow {
    position: absolute;
    width: 100%;
    height: 100%;

    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0) 70%
    );
    opacity: 0.3;
}

.circle-outer-ring {
    position: absolute;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.4);
    animation: rotate 20s linear infinite;
}

.circle-image {
    width: 90%;
    height: 90%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 1;
}

.feature-card:hover .circle-image {
    transform: scale(1.05);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

.particle:nth-child(1) {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 12px;
    height: 12px;
    top: 60%;
    left: 15%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    width: 6px;
    height: 6px;
    top: 40%;
    left: 70%;
    animation-delay: 4s;
}

.particle:nth-child(3) {
    width: 6px;
    height: 6px;
    top: 40%;
    left: 70%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    bottom: 20%;
    right: 20%;
    width: 10px;
    height: 10px;
    animation-delay: 6s;
}

.particle:nth-child(5) {
    bottom: 60%;
    right: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 8s;
}

.particle:nth-child(6) {
    bottom: 40%;
    right: 50%;
    width: 20px;
    height: 20px;
    animation-delay: 10s;
}

.particle:nth-child(7) {
    bottom: 20%;
    right: 20%;
    width: 10px;
    height: 10px;
    animation-delay: 12s;
}

.particle:nth-child(8) {
    bottom: 90%;
    right: 80%;
    width: 25px;
    height: 25px;
    animation-delay: 14s;
}

.particle:nth-child(9) {
    bottom: 40%;
    right: 50%;
    width: 20px;
    height: 20px;
    animation-delay: 16s;
}

.particle:nth-child(10) {
    bottom: 5%;
    right: 40%;
    width: 5px;
    height: 5px;
    animation-delay: 16s;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* El selector de ubi */
.selectbox {
    right: 0.2%;
    position: fixed;
    width: 25%;
    margin: auto;
    z-index: 1000 !important;
}

.select {
    text-align: center;
    padding-left: 50px;
    font-size: 10px;
    background-color: white;
    height: 30px;
    width: 100%;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.16);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.2s ease all;
    margin: 1px;
    padding: 10px;
    z-index: 1000 !important;
    border: 2px solid transparent;
}

.select.active,
.select:hover {
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.16);
    border: 2px solid #213f8f;
    z-index: 1000 !important;
}

.select.active:before {
    content: "";
    display: block;
    height: 0;
    width: 0;
    border-top: 15px solid #213f8f;
    border-right: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid transparent;
    position: absolute;
    bottom: -30px;
    left: calc(50% - 15px);
    z-index: 1000 !important;
}

.select i {
    font-size: 30px;
    margin-left: 30px;
    color: #213f8f;
    z-index: 1000;
}

.titulo {
    text-decoration: none !important;
    margin-bottom: 0.1px;
    color: #000;
    font-weight: 600;
    font-size: 10px;
}

.contenedor-icono {
    margin-right: 10px;
}

.opcion {
    text-decoration: none !important;
}

.opciones {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.16);
    max-height: 400px;
    overflow: auto;
    z-index: 100;
    width: 100%;
    display: none;
    z-index: 1000 !important;
}

.opciones.active {
    display: block;
    animation: fadeIn 0.3s forwards;
    z-index: 1000 !important;
}

@keyframes fadeIn {
    from {
        transform: translateY(-200px) scale(0.5);
    }

    to {
        transform: translateY(0) scale(1);
    }
}

.contenido-opcion {
    width: 100%;
    display: flex;
    align-items: center;
    transition: 0.2s ease all;
}

.opciones .contenido-opcion {
    padding: 30px;
}

.contenido-opcion img {
    width: 28px;
    height: 28px;
    margin-right: 30px;
}

.opciones .contenido-opcion:hover {
    background: #258a34;
}

.opciones .contenido-opcion:hover .titulo,
.opciones .contenido-opcion:hover .Ubicacion {
    color: #fff;
}

.Ubicacion {
    font-size: 12px !important;
}

@media screen and (max-width: 800px) {
    .selectbox {
        width: 100%;
    }
}

/* Estilos para los dropdown */
.dropdown-menu.mega-style {
    min-width: 280px;
    border: none;
    border-radius: 8px;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: fadeIn 0.5s forwards;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

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

    to {
        opacity: 1;
    }
}

.dropdown-menu.mega-style .dropdown-item {
    padding: 12px 20px;
    color: #4a5568;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    border-left: 3px solid transparent;
}

.dropdown-menu.mega-style .dropdown-item i {
    margin-right: 12px;
    color: #33a335;
    width: 20px;
    text-align: center;
}

.dropdown-menu.mega-style .dropdown-item:hover,
.dropdown-menu.mega-style .dropdown-item:focus {
    background: linear-gradient(to right, #f7fafc, #ebf4ff);
    color: #3b9b3d;
    border-left-color: #368437;
    transform: translateX(4px);
}

.dropdown-menu.mega-style li:not(:last-child) {
    border-bottom: 1px solid rgba(160, 174, 192, 0.1);
}

.dropdown-menu.mega-style::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
    filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.05));
}

/* Sidebar */
.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.5s;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.sidebar-header {
    padding: 20px;
    text-align: right;
}

.close-sidebar {
    font-size: 28px;
    cursor: pointer;
    color: #666;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li a {
    padding: 12px 20px;
    text-decoration: none;
    font-size: 16px;
    color: #333;
    display: block;
    transition: 0.3s;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-menu li a:hover {
    background-color: #f8f9fa;
    color: #000;
}

.sidebar-menu li a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.sidebar-submenu {
    display: none;
    list-style: none;
    padding-left: 20px;
    background-color: #f9f9f9;
}

.sidebar-submenu li a {
    padding: 10px 20px 10px 40px;
    font-size: 14px;
}

.sidebar-overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    cursor: pointer;
}

.sidebar-submenu li a {
    padding: 10px 20px 10px 50px;
    display: flex;
    align-items: center;
    color: #000000;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.sidebar-submenu li a:hover {
    background: #4c9f29;
    padding-left: 52px;
}

.sidebar-submenu li a i {
    margin-right: 10px;
    color: #27ae60;
    font-size: 0.95rem;
    width: 20px;
}

.sidebar-menu > li > a > i:first-child {
    margin-right: 12px;
    color: #27ae60;
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.sidebar-dropdown > a .fa-chevron-down {
    float: right;
    transition: transform 0.3s;
}

.sidebar-dropdown.active > a .fa-chevron-down {
    transform: rotate(180deg);
}

/* Carousel del destokp */
.segurosCarouselPrev {
    border: 2px solid #0ed500;
    border-radius: 50%;
}

.segurosCarouselNext {
    border: 2px solid #0ed500;
    border-radius: 50%;
}

.contenedor-botones {
    height: 50%;
    position: fixed;
    justify-content: space-between;
    bottom: 0, 2%;
}

.contenedor-botones-glide {
    padding: 5px;
    margin: 20px 0 20px 0;
    border-radius: 50% !important;
    border: 2px solid #0ed500 !important;
}

.container-custom {
    max-width: 940px !important;
}

/* Tarjetas card de las polizas */
.card.card-carousel {
    border-radius: 30px;
    width: 280px;
    min-height: 450px;
    margin: 15px;
    box-shadow: 0 10px 25px rgb(63, 255, 53);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    border: none;
}

.card.card-carousel:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgb(63, 255, 53);
}

/* ico */
.card.card-carousel::after {
    content: "\f3ed";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 10%;
    left: 10%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    border-radius: 50px;
    border: 2px solid #319623;
    background-color: #ffffff;
    color: #319623;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.card.card-carousel:hover::after {
    opacity: 0.8;
}

.card.card-carousel-content {
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card.card-carousel-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.card.card-carousel-description {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

@media (max-width: 768px) {
    .card.card-carousel {
        width: 100%;
        margin: auto;
    }
}

.card-carousel:hover {
    transform: translateY(-5px);
}

.card-img-top {
    border-radius: 30px 30px 0 0 !important;
    height: 180px;
    object-fit: cover;
    width: 100%;
}

.glide__arrows {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 800px;
}

@media (max-width: 768px) {
    .glide__arrows {
        gap: 250px;
    }
}

.glide__arrow {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 15px;
    z-index: 2;
}

.arrow-icon {
    font-size: 2rem;
    color: #28a745;
    transition: all 0.3s ease;
}

.glide__arrow:hover .arrow-icon {
    transform: scale(1.2);
}

/* Colores de títulos */
.text-green {
    color: #28a745;
}

.text-red {
    color: #dc3545;
}

.text-blue {
    color: #007bff;
}

/* Pie de tarjeta */
.card-footer {
    position: absolute;
    bottom: 20px;
    width: calc(100% - 30px);
}

.doc-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
}

.doc-link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .glide__arrows {
        top: -50px;
    }
}

.slide {
    max-width: 100% !important;
    box-sizing: border-box;
    margin: 0 auto;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px) scale(0.95);
    filter: blur(3px);
    transition: all 0.8s ease-out;
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px) scale(0.95);
    filter: blur(3px);
    transition: all 0.6s ease-out;
}

.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.reveal-air {
    animation: float 4s ease-in-out infinite;
}

.contenedor-img {
    width: 100%;
    height: 500px;
}

.asg-body {
    font-family: "Arial", sans-serif;
    background-color: #f8fafc;
    padding: 40px 20px;
}

.asg-valores-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.asg-valores-titulo {
    color: #27c934;
    margin-bottom: 40px;
    font-size: 2.2rem;
}

.asg-valor-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin: 0 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s;
}

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

.asg-valor-icono {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 25px;
}

.asg-valor-nombre {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5282;
    margin-bottom: 15px;
}

.asg-valor-descripcion {
    color: #4a5568;
    line-height: 1.6;
    font-size: 1.05rem;
}

.asg-glide-flecha {
    margin: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: linear-gradient(135deg, #93bd96 0%, #2e7650 100%);
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.asg-glide-punto {
    background: #cbd5e0;
    width: 12px;
    height: 12px;
}

.asg-glide-punto--activo {
    background: #42e147;
}

.hero-container {
    border: #0ed500 3px solid;
    box-shadow: #0ed500 3px;
}

.mision {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    min-height: 270px;
}

.vision {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    border-radius: 30px;
    min-height: 270px;
}

.objetivos {
    width: 100%;
    background-color: #eaedef;
    display: flex;
    height: 100%;
    padding: 30px;
}

.objetivos-objetivos {
    align-items: center;
    justify-content: center;
    background-color: #eaedef;
    display: flex;
    width: auto;
    height: 100%;
    padding: 30px;
}

.contenedor-mision-vision {
    background-color: #cbd3cb;
    display: flex;
    overflow: hidden;
}

.circulo-externo {
    box-shadow: 2px 0 0 0 #259f2f;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.circulo-interno {
    align-items: center;
    justify-content: center;
    display: flex;
    width: 170px;
    height: 170px;
    border-radius: 50%;
}

.objetivos2 {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #eaedef;
    display: flex;
    width: 100%;
    padding: 30px;
}

/* Estilos para el texto moderno de los objetivos */
.texto-moderno {
    max-width: 300px;
    padding: 20px;
    border-radius: 12px;
    margin-left: 30px;
}

.texto-moderno h3 {
    margin: 0 0 10px 0;
    color: #243aab;
    font-size: 24px;
    font-weight: 600;
    font-family: "Arial", sans-serif;
}

.texto-moderno p {
    font-size: 15px;
}

.mision,
.vision {
    display: flex;
    align-items: center;
    justify-content: center;
}

.circulo-rayas::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .contenedor-mision-vision,
    .objetivos,
    .objetivos2,
    .objetivos-objetivos,
    .mision,
    .vision {
        display: block !important;
        max-width: 500px !important;
        height: auto;
        margin: 0 auto !important;
    }

    .texto-moderno {
        width: 100%;
    }

    dotlottie-player {
        max-width: 200px !important;
        height: auto !important;
        margin: 0 auto !important;
        display: block !important;
    }
}

/* Dropdown del inicio de sesion */
.dropdown-menu {
    min-width: 200px;
    border-radius: 10px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.animated-dropdown {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(1);
    }
}

.cta-mega {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 100;
    animation: megaPulse 2s infinite;
}

.cta-content {
    display: flex;
    gap: 15px;
    align-items: center;
    background: linear-gradient(145deg, #26875a, #26893e);
    padding: 16px 25px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(72, 214, 43, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.cta-ripple {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.4) 0%,
        transparent 70%
    );
    opacity: 0;
    animation: ripple 3s infinite;
}

.cta-icon {
    flex-shrink: 0;
    color: white;
    animation: iconFloat 1.5s ease-in-out infinite;
}

.cta-text p {
    color: white;
    font-weight: 700;
    font-size: 16px;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-text span {
    font-weight: 900;
    background: linear-gradient(to right, #ffef00, #ff9a00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: textShine 1.5s infinite alternate;
}

.cta-close-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #333;
    font-size: 18px;
    padding: 8px;
}

.cta-close-btn:hover {
    color: #ff0000;
}

.cta-button {
    background: #ffef00;
    color: #0038a8;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 239, 0, 0.4);
}

.cta-button:hover {
    background: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 239, 0, 0.6);
}

@keyframes megaPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes iconFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes textShine {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

/* Animaciones */
@keyframes ctaEntrance {
    to {
        transform: translateY(1);
        opacity: 1;
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .cta-content {
        max-width: 70%;
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .cta-button {
        width: 90%;
    }

    .cta-text p {
        font-size: 14px;
    }
}

.estilos-select {
    font-family: "Roboto";
    border: 2px solid rgb(40, 167, 69);
    transition: all ease;
}

.form-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    padding: 30px;
    box-sizing: border-box;
    border: 2px solid #28a745;
}

@media (max-width: 768px) {
    .input-field label {
        font-size: 12px !important;
    }
}

h1 {
    color: #333;
    text-align: center;
    margin-bottom: 25px;
    font-size: 28px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: bold;
}

input,
select {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border 0.3s;
}

input:focus,
select:focus {
    border-color: #4a90e2;
    outline: none;
    box-shadow: 0 0 5px rgba(74, 144, 226, 0.5);
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 38px;
    color: #777;
}

.btn-submit {
    background: linear-gradient(135deg, #4a90e2 0%, #3a7bd5 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #3a7bd5 0%, #4a90e2 100%);
}

.section-title {
    justify-content: center;
    align-content: center;
    font-size: 20px;
    color: #4a90e2;
    margin: 25px 0 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.centerForm {
    position: absolute;
    top: 130px;
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    max-width: 600px;
    padding: 30px;
}

.background-div {
    position: static;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(135deg, #4a90e2, #3a7bd5);
    z-index: 1;
}

.background-div2 {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(135deg, #3fbc33, #1a731a);
    z-index: 1;
}

.form-container i {
    margin-top: 10px;
}

.form-container h1 {
    color: #0ed500;
}

.btn-login-premium {
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-login-premium:hover {
    transform: translateY(-2px);
}

.btn-login-premium .fa-user-circle {
    transition: transform 0.3s ease;
}

.animated-dropdown {
    border: none !important;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15) !important;
    transform-origin: top center;
    animation: fadeIn 0.25s ease forwards;
    opacity: 0;
    margin-top: 10px !important;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        margin-top: 5px !important;
    }
}

.dropdown-item {
    display: flex !important;
    align-items: center;
    padding: 10px 15px !important;
    transition: all 0.2s ease !important;
    margin: 2px 8px !important;
    width: auto !important;
}

.dropdown-item:hover {
    border-left: 2px solid #42a945 !important;

    transform: translateX(5px);
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    margin-right: 10px !important;
}

.dropdown-divider {
    margin: 5px 0 !important;
    opacity: 0.5;
}

.show .fa-user-circle {
    animation: backwards 0.25s ease forwards;
    color: #178538;
}

.show .btn-text {
    color: #178538;
}

.dropdown-menu {
    border: 1.5px solid #178538 !important;
}

/* Contenedor principal */
.contenedor-equipo {
    box-shadow: #0ed500 3px;
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background: linear-gradient(135deg, #afdeb3 0%, #66b38a 100%);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Sección de imagen */
.equipo-secundario {
    height: 500px;
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.imagen-equipo {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.equipo-secundario:hover .imagen-equipo {
    transform: scale(1.03);
}

/* Sección de texto */
.equipo-principal {
    flex: 1;
    padding: 20px;
}

.titulo-equipo {
    font-size: 2.5rem;
    color: #2a3f54;
    margin-bottom: 20px;
    position: relative;
}

.titulo-equipo::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #4a6ee0;
    margin-top: 15px;
    border-radius: 2px;
}

.descripcion-equipo {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 30px;
}

/* Lista de cualidades */
.cualidades-equipo {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.cualidad-item {
    font-size: 1.05rem;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    color: #2d3748;
}

.icono-cualidad {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

/* Botón */
.boton-equipo {
    background: #4a6ee0;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(74, 110, 224, 0.25);
}

.boton-equipo:hover {
    background: #3a5bc7;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(74, 110, 224, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .contenedor-equipo {
        flex-direction: column;
        padding: 40px 20px;
    }

    .titulo-equipo {
        font-size: 2rem;
    }
}

.contenedor-valores {
    max-width: 1300px;
    margin: 60px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* CARDS GENERALES (VERDES) */
.card-valor-general {
    margin: 20px;
    background: rgba(196, 216, 189, 0.79);
    border-radius: 20px;
    padding: 40px 30px;
    height: 380px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(26, 75, 140, 0.2);
    border: 2px solid #084b17;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    cursor: pointer;
}

.card-valor-general:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(26, 75, 140, 0.3);
    background: rgba(180, 210, 170, 0.85);
}

/* Icono */
.card-valor-general__icon {
    font-size: 4rem;
    color: var(--azul-rcv);
    margin-bottom: 25px;
    transition: all 0.3s;
}

.card-valor-general:hover .card-valor-general__icon {
    transform: scale(1.1);
    color: var(--dorado);
}

/* Titulo */
.card-valor-general__title {
    font-family: "Roboto", sans-serif;
    font-size: 1.7rem;
    color: #49bb75;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.3s;
}

.card-valor-general__title span {
    color: var(--dorado);
    display: inline-block;
}

.card-valor-general:hover .card-valor-general__title {
    color: #3aa363;
}

/* Texto */
.card-valor-general__text {
    color: #4a5568;
    line-height: 1.6;
    font-size: 1.05rem;
    padding: 0 15px;
    transition: color 0.3s;
}

.card-valor-general:hover .card-valor-general__text {
    color: #2d3748;
}

/* Badge */
.card-valor-general__badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--azul-rcv);
    color: white;
    padding: 5px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.card-valor-general:hover .card-valor-general__badge {
    background: var(--dorado);
    color: #000;
}

/* CARD HOLOGRÁFICA (SLIDE 5) */
.card-valor-holografica {
    background: var(--fondo-oscuro);
    border-radius: 20px;
    width: 100%;
    height: 380px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.2);
    border: 1px solid rgba(0, 240, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.card-valor-holografica:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 240, 255, 0.3);
}

.card-valor-holografica__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 240, 255, 0.1) 0%,
        rgba(183, 0, 255, 0.1) 50%,
        rgba(0, 240, 255, 0.1) 100%
    );
    opacity: 0.8;
    animation: holo-pulse 8s infinite alternate;
}

.card-valor-holografica__glare {
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.8) 0%,
        transparent 60%
    );
    top: -50%;
    left: -50%;
    opacity: 0.2;
    transform: rotate(30deg);
    transition: all 0.5s;
}

.card-valor-holografica:hover .card-valor-holografica__glare {
    transform: rotate(45deg) translate(10%, 10%);
    opacity: 0.3;
}

.card-valor-holografica__grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(
            rgba(0, 240, 255, 0.1) 1px,
            transparent 1px
        ),
        linear-gradient(90deg, rgba(0, 240, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.4;
    z-index: 1;
}

.card-valor-holografica__content {
    position: relative;
    z-index: 3;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-valor-holografica__icon {
    font-size: 4.5rem;
    margin-bottom: 25px;
    color: transparent;
    background: linear-gradient(45deg, rgb(74, 74, 177), rgb(209, 28, 209));
    text-shadow: 0 0 15px rgba(183, 0, 255, 0.5);
    transition: all 0.5s;
}

.card-valor-holografica:hover .card-valor-holografica__icon {
    transform: scale(1.1);
    text-shadow: 0 0 25px rgba(183, 0, 255, 0.8);
}

.card-valor-holografica__title {
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
    transition: all 0.3s;
}

.card-valor-holografica__title span {
    color: var(--azul-neon);
    display: inline-block;
    transform: skewX(-10deg);
    transition: all 0.3s;
}

.card-valor-holografica:hover .card-valor-holografica__title {
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.card-valor-holografica:hover .card-valor-holografica__title span {
    transform: skewX(-15deg);
    color: var(--morado-neon);
}

.card-valor-holografica__text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 25px;
    transition: all 0.3s;
}

.card-valor-holografica:hover .card-valor-holografica__text {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 5px rgba(0, 240, 255, 0.3);
}

.card-valor-holografica__badge {
    background: linear-gradient(45deg, var(--azul-neon), var(--morado-neon));
    color: black;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 0 10px var(--azul-neon);
    transition: all 0.3s;
}

.card-valor-holografica:hover .card-valor-holografica__badge {
    box-shadow: 0 0 20px var(--morado-neon);
    transform: scale(1.05);
}

/* CONTROLES DEL CARRUSEL */
.card-carousel__arrow {
    background: yellowgreen;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.card-carousel__arrow:hover {
    transform: scale(1.1);
}

.card-carousel__bullet {
    background: #d1d8e0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    margin: 0 5px;
    transition: all 0.3s;
}

.card-carousel__bullet--active {
    background: var(--azul-rcv);
    transform: scale(1.2);
}

/* ANIMACIONES */
@keyframes holo-pulse {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.9;
    }
    100% {
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .card-valor-general,
    .card-valor-holografica {
        height: 350px;
        padding: 30px 20px;
    }

    .card-valor-general__icon,
    .card-valor-holografica__icon {
        font-size: 3.5rem;
    }

    .card-valor-general__title,
    .card-valor-holografica__title {
        font-size: 1.5rem;
    }

    .card-carousel__arrow {
        width: 40px;
        height: 40px;
    }
}

/* Polizas */
.policies-grid {
    border-radius: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.policy-card {
    border-radius: 1%;
    border: 1px solid rgba(25, 59, 22, 0.078);
    overflow: hidden;
    height: auto;
    border-top: 4px solid #0ed500;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.policy-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.139);
    color: rgb(87, 209, 82);
}

.policy-card:hover::before {
    opacity: 1;
}

.policy-icon {
    font-size: 5rem;
    transition: var(--transition);
}

.policy-name {
    color: #0ed500;
    font-size: 1.5rem;
}

.policy-badge {
    position: relative;
    z-index: 18 !important;
    color: #000000;
    text-decoration: none;
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(67, 97, 238, 0.1);
    border-radius: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.policy-card:hover .policy-badge {
    background: rgba(63, 201, 48, 0.717);
    color: rgb(0, 0, 0);
    transform: translateY(5px);
}

@media (max-width: 768px) {
    .policies-grid {
        grid-template-columns: 1fr;
    }
}

.policy-card h1 {
    text-align: justify;
    line-height: 2;
    font-size: 13px !important;
    color: rgb(0, 0, 0);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.estilo-insignia {
    border: 4px solid #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 0 0 2px #56c942;
    padding: 8px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
}

/* Estilos de los cuadros animados */
.cuadrado {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    transition: transform 3s linear;
    will-change: transform;
}
#cuadrado1 {
    background: #f1ff333e;
    opacity: 0.7;
    width: 40px;
    height: 40px;
}
#cuadrado2 {
    width: 50px;
    height: 50px;
    background: #17a83258;
    opacity: 0.7;
}
#cuadrado3 {
    width: 60px;
    height: 60px;
    background: #17a83246;
    opacity: 0.7;
}
#cuadrado4 {
    width: 70px;
    height: 70px;
    background: #c8d32d4b;
    opacity: 0.7;
}

/* Input field */
.input-field {
    position: relative;
    margin-bottom: 25px;
}

.input-field input,
.input-field select {
    margin-top: 10px;
    width: 100%;
    height: 60px;
    border-radius: 30px;
    font-size: 18px;
    border: 2px solid #c5c1c1;
    background: transparent;
    color: #000000;
    outline: none;
    padding: 0 20px 0 45px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.input-field label {
    position: absolute;
    top: 30px;
    left: 45px;
    transform: translateY(-50%);
    color: #777;
    font-size: 18px;
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0 5px;
}

.input-field label i {
    margin-right: 8px;
    width: 20px;
    text-align: center;
}

.input-field input:focus,
.input-field select:focus {
    border-color: #31ce49;
    box-shadow: 0 0 0 3px rgba(49, 206, 73, 0.2);
}

.input-field input:focus ~ label,
.input-field input:not(:placeholder-shown) ~ label,
.input-field select:focus ~ label,
.input-field select:valid ~ label {
    top: 0;
    font-size: 14px;
    color: #31ce49;
    background: #fff;
    left: 25px;
}

.input-field.select-field::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #777;
}

.input-field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.choices__list--dropdown {
    border-radius: 10px !important;
    border: 2px solid #c5c1c1 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    margin-top: 5px !important;
}

.choices__list--dropdown .choices__item {
    padding: 12px 20px !important;
    font-size: 16px !important;
    border-bottom: 1px solid #f0f0f0 !important;
}

.choices__list--dropdown .choices__item--selectable:hover,
.choices__list--dropdown .choices__item--selected {
    background: #e8f5e9 !important;
    color: #31ce49 !important;
}

.switch-premium {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    cursor: pointer;
}

.switch-premium input {
    display: none;
}

.slider-premium {
    width: 70px;
    height: 30px;
    background: #f1f1f1;
    border-radius: 15px;
    position: relative;
    transition: 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    font-size: 10px;
    font-weight: bold;
    color: #999;
}

.on,
.off {
    z-index: 1;
}

.slider-circle {
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

input:checked + .slider-premium {
    background: #2ecc71;
}

input:checked + .slider-premium .slider-circle {
    transform: translateX(40px);
}

input:checked + .slider-premium .on {
    color: white;
}

input:checked + .slider-premium .off {
    color: transparent;
}

.switch-content {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.switch-content i {
    color: #2ecc71;
}


.hover-highlight:hover {
    background-color: rgba(13, 110, 253, 0.05);
    transition: background-color 0.3s ease;
}

.modal-content {
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.total-container {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.dropdown-enter {
    animation: dropdownEnter 0.2s ease-out;
}
.dropdown-exit {
    animation: dropdownExit 0.2s ease-in;
}
@keyframes dropdownEnter {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes dropdownExit {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.modificacion-span {
    font-size: 10px ;
}

#plan-apov-options {
    max-height: 200px ;
    overflow-y: auto ;
    scrollbar-width: thin;
    scrollbar-color: rgb(156, 163, 175) rgb(255, 255, 255) ;
}

#plan-basico-options {
    max-height: 200px ;
    overflow-y: auto;
    scrollbar-width: thin ;
    scrollbar-color: rgb(156, 163, 175) rgb(255, 255, 255);
}

#exceso-limite-options {
    max-height: 200px ;
    overflow-y: auto ;
    scrollbar-width: thin ;
    scrollbar-color: rgb(156, 163, 175) rgb(255, 255, 255) ;
}

#extension-remolque-options {
    max-height: 200px;
    overflow-y: auto ;
}

/* Estilo del contenedor */
.swal-custom-error {
    border-left: 4px solid #ef4444;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
}

/* Título con estilo personalizado */
.swal-custom-title {
    font-size: 1.5rem;
    font-weight: 600 ;
    color: #1f2937;
    margin-bottom: 0;
}

/* Texto secundario */
.swal-custom-html {
    margin-top: 0.5rem;
    padding: 0;
}

#barra {
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(
        90deg,
        rgba(112, 196, 56, 0.82) 0%,
        rgba(35, 117, 25, 0.833) 100%
    ) !important;
    z-index: 99;
}


