:root {
    --primario: #2a6392;
    --turquesa: #2EC4B6;
    --turquesa-claro: #CBF3F0;
    --acento: #FF9F1C;
    --acento-hover: #E88E19;
    --bg-suave: #F5F7FA;
    --bg-blanco: #FFFFFF;
    --texto-p: #1B263B;
    --texto-claro: #6C757D;
    --borde: #E9ECEF;

    --radio-pro: 40px;
    --sombra-premium: 0 20px 50px rgba(15, 61, 62, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-suave);
    color: var(--texto-p);
    line-height: 1.6;
}

.logo img {
    height: 38px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 8px;
}


.navbar {
    background: var(--bg-blanco);
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--borde);
    box-shadow: 0 4px 20px rgba(15, 61, 62, 0.05);
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primario);
    text-decoration: none;
    letter-spacing: -1px;
}

.logo span {
    color: var(--turquesa);
}

.nav-menu {
    display: flex;
    gap: 35px;
    list-style: none;
    align-items: center;
}

.nav-link {
    color: var(--texto-p);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--turquesa);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--primario);
    padding: 10px;
}


.btn-pill {
    background: var(--acento);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 159, 28, 0.3);
    text-align: center;
}

.btn-pill:hover {
    transform: translateY(-2px);
    background: var(--acento-hover);
    box-shadow: 0 6px 20px rgba(255, 159, 28, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    box-shadow: none;
}

.btn-outline:hover {
    background: white;
    color: var(--primario);
    transform: translateY(-2px);
}


.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 80px 8% 180px;
    position: relative;
    background: radial-gradient(circle at top right, var(--turquesa-claro) 0%, var(--bg-suave) 70%);
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-video-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 4px 0 12px 10px;
    padding: 9px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(46, 196, 182, 0.12), rgba(26, 74, 110, 0.08));
    color: var(--primario);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.hero-video-title i {
    color: var(--acento);
}

.hero-video-legacy {
    isolation: isolate;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #dff8f4 0%, #f7fbff 100%);
}

.hero-video-embed {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
    background: linear-gradient(135deg, #dff8f4 0%, #f7fbff 100%);
    z-index: 1;
}

.hero-video-legacy > div[style*="fa-play"],
.hero-video-legacy > p {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 992px) {
    .hero-video-legacy {
        width: 100%;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 768px) {
    .hero-video-title {
        margin-left: 0;
        margin-right: 0;
        font-size: 0.82rem;
        justify-content: center;
        width: 100%;
    }

    .hero-video-legacy {
        aspect-ratio: 16 / 9;
        border-radius: 18px;
    }

    .hero-video-embed {
        border-radius: 18px;
    }
}

.grid-inspirando {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.perfil-row {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.perfil-row.reverse {
    flex-direction: row-reverse;
}

.auth-wrapper {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: radial-gradient(circle at top right, var(--turquesa-claro) 0%, var(--bg-suave) 100%);
}

.auth-container {
    background: white;
    width: 100%;
    max-width: 1000px;
    min-height: 760px;
    border-radius: var(--radio-pro);
    box-shadow: var(--sombra-premium);
    position: relative;
    overflow: hidden;
    display: flex;
    border: none;
}

.form-container {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all 0.6s ease-in-out;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px 42px;
}

.sign-in-container {
    left: 0;
    width: 50%;
    z-index: 2;
}

.sign-up-container {
    left: 0;
    width: 50%;
    opacity: 0;
    z-index: 1;
}

.sign-up-container form,
.sign-in-container form {
    width: 100%;
}

.login-welcome-block {
    align-items: center;
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
}

.login-brand-mark {
    align-items: center;
    background: linear-gradient(135deg, rgba(46, 196, 182, 0.16), rgba(42, 99, 146, 0.08));
    border: 1px solid rgba(42, 99, 146, 0.1);
    border-radius: 24px;
    box-shadow: 0 14px 32px rgba(42, 99, 146, 0.12);
    display: flex;
    height: 82px;
    justify-content: center;
    margin-bottom: 20px;
    padding: 14px 18px;
    width: 112px;
}

.login-brand-mark img {
    display: block;
    height: 54px;
    object-fit: contain;
    width: auto;
}

.auth-container.right-panel-active .sign-in-container {
    transform: translateX(100%);
    opacity: 0;
}

.auth-container.right-panel-active .sign-up-container {
    transform: translateX(100%);
    opacity: 1;
    z-index: 5;
    animation: show 0.6s;
}

@keyframes show {

    0%,
    49.99% {
        opacity: 0;
        z-index: 1;
    }

    50%,
    100% {
        opacity: 1;
        z-index: 5;
    }
}

.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.input-group {
    position: relative;
    margin-bottom: 14px;
    padding-bottom: 14px;
}

.input-group label {
    display: block;
    font-weight: 700;
    color: var(--primario);
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.input-group i {
    position: absolute;
    left: 18px;
    top: 44px;
    color: var(--texto-claro);
    font-size: 1rem;
    transition: 0.3s;
    z-index: 1;
    pointer-events: none;
}

.input-custom {
    width: 100%;
    padding: 14px 15px 14px 48px;
    border-radius: 15px;
    border: 1.5px solid #E2E8F0;
    background: #F8FAFC;
    outline: none;
    transition: 0.3s;
    font-size: 0.95rem;
    color: var(--texto-p);
    min-height: 52px;
}

.input-custom:focus {
    border-color: var(--turquesa);
    background: white;
    box-shadow: 0 0 0 4px rgba(46, 196, 182, 0.1);
}

.input-custom:focus+i {
    color: var(--turquesa);
}

.input-group .error-text {
    position: absolute;
    left: 0;
    top: calc(100% - 18px);
    width: 100%;
    display: none;
    font-size: 0.68rem;
    font-weight: 600;
    line-height: 1.15;
    text-align: left;
    color: #e74c3c;
}

/* Overlay Login */
.overlay-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.6s ease-in-out;
    z-index: 100;
}

.overlay {
    background: linear-gradient(135deg, var(--primario) 0%, #155556 100%);
    color: white;
    position: relative;
    left: -100%;
    height: 100%;
    width: 200%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.overlay-panel {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 50px;
    text-align: center;
    top: 0;
    height: 100%;
    width: 50%;
    transition: transform 0.6s ease-in-out;
}

.overlay-right {
    right: 0;
}

.overlay-left {
    transform: translateX(-20%);
}

.auth-container.right-panel-active .overlay-container {
    transform: translateX(-100%);
}

.auth-container.right-panel-active .overlay {
    transform: translateX(50%);
}

.auth-container.right-panel-active .overlay-left {
    transform: translateX(0);
}

.auth-container.right-panel-active .overlay-right {
    transform: translateX(20%);
}

.footer-system {
    background: var(--bg-blanco);
    padding: 60px 8% 30px 8%;
    border-top: 1px solid var(--borde);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-info p {
    font-size: 0.9rem;
    color: var(--texto-claro);
    margin-top: 15px;
}

.footer-column h4 {
    color: var(--primario);
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    color: var(--texto-claro);
    font-size: 0.9rem;
    transition: 0.2s;
}

.footer-column ul li a:hover {
    color: var(--turquesa);
}

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid var(--borde);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--texto-claro);
    font-size: 0.85rem;
}



@media (max-width: 992px) {
    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .navbar {
        padding: 0 5%;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-blanco);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: 0.4s ease-in-out;
        z-index: 999;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        text-align: center;
        width: 100%;
    }

    .nav-menu .btn-pill {
        display: block;
        width: 80%;
        margin: 0 auto;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 5% 120px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .grid-inspirando {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .img-inspirando {
        display: none;
    }

    .perfil-img {
        display: none;
    }
}


@media (max-width: 768px) {
    section {
        padding-left: 5% !important;
        padding-right: 5% !important;
    }

    .hero-buttons button {
        width: 100%;
    }

    h1 {
        font-size: 2.2rem !important;
    }

    h2 {
        font-size: 2rem !important;
    }

    .timeline-step {
        flex-direction: column !important;
        text-align: center;
        align-items: center !important;
    }

    .timeline-line {
        display: none;
    }

    .auth-container {
        flex-direction: column;
        max-width: 450px;
        min-height: auto;
        border-radius: 20px;
        overflow: hidden;
    }

    .overlay-container {
        display: none;
    }

    .form-container {
        width: 100% !important;
        position: relative;
        padding: 40px 25px;
        transition: none;
    }

    .input-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .sign-in-container {
        display: flex;
        opacity: 1;
        transform: none !important;
    }

    .sign-up-container {
        display: none;
        opacity: 1;
        transform: none !important;
        animation: none !important;
    }


    .auth-container.right-panel-active .sign-in-container {
        display: none;
    }

    .auth-container.right-panel-active .sign-up-container {
        display: flex;
        transform: translateX(0) !important;
        animation: none !important;
        left: 0 !important;
    }

    .mobile-switch {
        display: block !important;
        margin-top: 15px;
        margin-bottom: 15px;
        text-align: center;
        font-size: 0.95rem;
        color: var(--texto-claro);
        cursor: pointer;
    }

    .mobile-switch b {
        color: var(--primario);
        text-decoration: underline;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}


.mobile-switch {
    display: none;
}

.logo img {
    height: 35px;
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(45px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}
.reveal.reveal-left {
    transform: translateX(-60px);
}
.reveal.reveal-right {
    transform: translateX(60px);
}
.reveal.reveal-scale {
    transform: scale(0.92);
}
.reveal.active {
    opacity: 1;
    transform: translate(0) scale(1) !important;
}

/* Stagger delay for multiple items appearing in sequence */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }


/* ==========================================================================
   PREMIUM SUBSCRIPTION PANEL
   ========================================================================== */
.pricing-section-title {
    color: var(--turquesa);
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.pricing-section-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    color: var(--primario);
    font-weight: 900;
    margin-bottom: 20px;
}

.pricing-section-sub {
    color: var(--texto-claro);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.pricing-toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}
.pricing-toggle-label {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--texto-p);
    cursor: pointer;
    transition: 0.3s;
    user-select: none;
}
.pricing-toggle-label.active {
    color: var(--turquesa);
}
.pricing-switch {
    position: relative;
    width: 60px;
    height: 32px;
    background-color: var(--borde);
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    display: inline-block;
}
.pricing-switch-circle {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 26px;
    height: 26px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}
.pricing-switch.active {
    background-color: var(--turquesa);
}
.pricing-switch.active .pricing-switch-circle {
    left: 31px;
}
.pricing-discount-badge {
    background-color: var(--acento);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 50px;
    margin-left: 5px;
    box-shadow: 0 4px 10px rgba(255, 159, 28, 0.2);
    display: inline-block;
    vertical-align: middle;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}
.pricing-card {
    background: var(--bg-blanco);
    border: 1px solid var(--borde);
    border-radius: 30px;
    padding: 50px 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(15, 61, 62, 0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(15, 61, 62, 0.08);
    border-color: rgba(46, 196, 182, 0.3);
}

/* Featured / Recommended Card highlight */
.pricing-card.featured {
    border: 2.5px solid var(--turquesa);
    box-shadow: 0 15px 45px rgba(46, 196, 182, 0.12);
    transform: scale(1.03);
    z-index: 2;
    background: linear-gradient(180deg, var(--bg-blanco) 0%, rgba(203, 243, 240, 0.15) 100%);
}
.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 30px 60px rgba(46, 196, 182, 0.18);
}
.pricing-card-badge {
    position: absolute;
    top: 25px;
    right: -35px;
    background: var(--acento);
    color: white;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 6px 40px;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(255, 159, 28, 0.2);
    letter-spacing: 1px;
}
.pricing-card-header {
    margin-bottom: 30px;
}
.pricing-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primario);
    margin-bottom: 10px;
}
.pricing-card-desc {
    font-size: 0.95rem;
    color: var(--texto-claro);
    line-height: 1.5;
}
.pricing-card-price-box {
    margin-bottom: 35px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 4px;
}
.pricing-card-currency {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--texto-p);
    align-self: flex-start;
    margin-top: 5px;
}
.pricing-card-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--texto-p);
    line-height: 1;
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.pricing-card-period {
    font-size: 1rem;
    font-weight: 600;
    color: var(--texto-claro);
}

.pricing-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    text-align: left;
    flex-grow: 1;
}
.pricing-card-features li {
    font-size: 1rem;
    color: var(--texto-p);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.4;
}
.pricing-card-features li i {
    color: var(--turquesa);
    font-size: 1.15rem;
    margin-top: 3px;
}
.pricing-card-features li.disabled {
    color: var(--texto-claro);
    opacity: 0.55;
}
.pricing-card-features li.disabled i {
    color: var(--texto-claro);
}

.pricing-card .btn-pill {
    width: 100%;
    padding: 15px 30px;
    font-size: 1.05rem;
    border-radius: 15px;
}
.pricing-card.featured .btn-pill {
    background: linear-gradient(135deg, var(--turquesa) 0%, var(--primario) 100%);
    box-shadow: 0 8px 25px rgba(46, 196, 182, 0.35);
}
.pricing-card.featured .btn-pill:hover {
    background: linear-gradient(135deg, var(--primario) 0%, var(--turquesa) 100%);
    box-shadow: 0 10px 30px rgba(46, 196, 182, 0.45);
}

/* Responsive adjustments for pricing cards */
@media (max-width: 992px) {
    .pricing-card.featured {
        transform: scale(1);
    }
    .pricing-card.featured:hover {
        transform: translateY(-10px) scale(1);
    }
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
        padding: 10px 0;
        max-width: 500px; /* Limit card width on tablets so they aren't stretched too wide */
        margin: 0 auto;
    }
    .pricing-card {
        padding: 35px 22px;
        border-radius: 24px;
    }
}

/* ==========================================================================
   CATEGORY TABS & DYNAMIC SWITCHES
   ========================================================================== */
.pricing-tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}
.pricing-tabs {
    display: inline-flex;
    background: rgba(42, 99, 146, 0.05);
    padding: 6px;
    border-radius: 50px;
    border: 1px solid var(--borde);
    box-shadow: inset 0 2px 4px rgba(15, 61, 62, 0.03);
}
.pricing-tab-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primario);
    background: transparent;
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
    white-space: nowrap;
}
.pricing-tab-btn:hover {
    color: var(--turquesa);
}
.pricing-tab-btn.active {
    background: var(--primario);
    color: white;
    box-shadow: 0 10px 25px rgba(42, 99, 146, 0.2);
}

.pricing-tab-panel {
    display: none;
}
.pricing-tab-panel.active {
    display: block;
    animation: tabFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* iOS Mini Switch for AI Upgrade */
.ia-toggle-wrapper {
    background: rgba(46, 196, 182, 0.05);
    border: 1px dashed rgba(46, 196, 182, 0.25);
    padding: 14px 20px;
    border-radius: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.ia-toggle-wrapper.active {
    background: rgba(46, 196, 182, 0.12);
    border: 1px solid rgba(46, 196, 182, 0.4);
    box-shadow: 0 4px 15px rgba(46, 196, 182, 0.12);
}
.ia-toggle-text {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--texto-p);
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
}
.ia-toggle-text i {
    color: var(--turquesa);
    font-size: 1.05rem;
    animation: floatPulse 2s infinite ease-in-out;
}

@keyframes floatPulse {
    0%, 100% { transform: translateY(0) scale(1); filter: drop-shadow(0 0 0px rgba(46, 196, 182, 0)); }
    50% { transform: translateY(-2px) scale(1.15); filter: drop-shadow(0 0 4px rgba(46, 196, 182, 0.5)); }
}

.mini-switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 26px;
    flex-shrink: 0;
}
.mini-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.mini-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--borde);
    transition: .3s;
    border-radius: 24px;
}
.mini-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
input:checked + .mini-slider {
    background-color: var(--turquesa);
}
input:checked + .mini-slider:before {
    transform: translateX(20px);
}

.ia-highlight {
    font-weight: 700;
    transition: all 0.3s ease;
}
.ia-highlight.glow {
    color: var(--acento) !important;
    font-weight: 800;
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE CORRECTIONS FOR PRICING PANEL
   ========================================================================== */
@media (max-width: 768px) {
    #precios {
        padding: 60px 4% !important;
    }

    .pricing-section-heading {
        font-size: 2.2rem !important;
        line-height: 1.2;
    }
    
    .pricing-section-sub {
        font-size: 1.05rem;
        margin-bottom: 35px;
    }

    .pricing-tabs-container {
        padding: 0 10px;
        margin-bottom: 35px;
        width: 100%;
        display: flex;
        justify-content: center;
        box-sizing: border-box;
    }
    
    .pricing-tabs {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        border-radius: 24px;
        padding: 8px;
        gap: 6px;
        box-sizing: border-box;
    }
    
    .pricing-tab-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.92rem;
        border-radius: 18px;
        text-align: center;
        box-sizing: border-box;
    }

    .ia-toggle-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 15px 12px;
        border-radius: 14px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .ia-toggle-text {
        font-size: 0.85rem;
        gap: 6px;
        justify-content: center;
        text-align: center;
    }
    
    .pricing-card-price {
        font-size: 3rem;
    }
}


