body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-main);
    padding:0px;
    margin: 0px;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border: 0px;
}

.btn-secondary {
    background: var(--secondary);
    color: #fff;
    border: 0px;
}

.btn-outline-primary {
    --bs-btn-color: var(--primary);
    --bs-btn-border-color: var(--primary);
    --bs-btn-hover-bg: var(--primary);
    --bs-btn-hover-border-color: var(--primary);
    --bs-btn-active-bg: var(--primary);
    --bs-btn-active-border-color: var(--primary);
}

.accordion {
    --bs-accordion-btn-color: var(--primary);
    --bs-accordion-btn-bg: transparent;
    --bs-accordion-active-color: #fff;
    --bs-accordion-active-bg: var(--primary);
}


/* MENU */
.main-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
   
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo a {
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    color: var(--text);
}

.nav-logo img {
    max-height: 80px;
}
.nav-links {
    display: flex;
    gap: 28px;
     padding: 18px 20px;
}

.nav-link {
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    transition: all 0.2s ease;
}

.nav-cta-wrapper {
    margin-left: 30px;
}

.nav-cta {
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-link {
    position: relative;
    padding-bottom: 6px;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary);
}

html {
    scroll-padding-top: 80px;
}

/* CTA mobile oculto en desktop */
.nav-cta-mobile {
    display: none;
}

/* MOBILE */
@media (max-width: 992px) {

    .nav-cta-wrapper {
        display: none;
    }

    .nav-cta-mobile {
        display: block;
        margin-top: 15px;
        text-align: center;
    }

    .nav-links {
        align-items: center;
        text-align: center;
    }

}

/* Oculto hamburguesa en desktop */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    display: block;
}

/* MOBILE */
@media (max-width: 992px) {

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-cta-wrapper {
        display: none;
    }

    .main-nav {
        position: relative;
    }

    .nav-container {
        position: relative;
    }
}

/* Boton Whatsapp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    z-index: 999;
    transition: transform 0.2s ease;
    font-size: 30px;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}


/* Estructura base */



.container-custom {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.container-fluid-custom {
    width: 100%;
   /* padding-left: 20px;
    padding-right: 20px;*/
}

/* Ajuste de padding en mobile */
@media (max-width: 768px) {
    .block {
        padding: 50px 0;
    }
}


/*BLOCK COLOR */
.section-text-light {
    color: #222;
}

.section-text-light h1,
.section-text-light h2,
.section-text-light h3,
.section-text-light h4,
.section-text-light h5,
.section-text-light h6,
.section-text-light p,
.section-text-light li,
.section-text-light span {
    color: #222 !important;
}

.section-text-dark {
    color: #FFF;
}

.section-text-dark h1,
.section-text-dark h2,
.section-text-dark h3,
.section-text-dark h4,
.section-text-dark h5,
.section-text-dark h6,
.section-text-dark p,
.section-text-dark li,
.section-text-dark span {
    color: #FFF !important;
}




/* =========================
   DARK TEMPLATE
========================= */

.section-dark {
    background: #111;
    color: #fff;
}

.section-dark .section-card,
.section-dark .section-form-wrapper {
    background: #1e1e1e;
    box-shadow: none;
}

.section-dark .section-icon {
    background-color: rgba(255,255,255,0.08);
    color: var(--primary);
}

.section-dark .section-card:hover .section-icon {
    background-color: var(--primary);
    color: #fff;
}

/* =========================
   SOFT TEMPLATE
========================= */

.section-soft {
    background: #f8f9fa;
}

.section-soft .section-card,
.section-soft .section-form-wrapper {
    background: #ffffff;
}

.section-light {
    background: #f8f9fa;
}

.section-light .section-card,
.section-light .section-form-wrapper {
    background: #ffffff;
}




.badge-basic {
    background:#94a3b8;
}

.badge-pro {
    background:#f59e0b;
}

.badge-proplus {
    background:#ef4444;
}