    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
    }

    body {
        background: #020617;
        color: #fff;
    }

    .container {
        max-width: 1100px;
        margin: auto;
        padding: 20px;
    }

    .hero {
        text-align: center;
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 2.5rem;
        color: #F58220;
    }

    .hero p {
        margin-top: 15px;
        color: #cbd5f5;
    }

    .badge {
        background: #dc2626;
        padding: 8px 15px;
        border-radius: 20px;
        display: inline-block;
        margin-bottom: 15px;
    }

    .btn {
        background: #F58220;
        color: #fff;
        padding: 16px 28px;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 600;
        display: inline-block;
        margin-top: 20px;
        transition: 0.3s;
    }

    .btn:hover {
        background: #0D3A63;
    }

    .section {
        padding: 50px 20px;
        text-align: center;
    }

    .cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }

    .card {
        background: #1e293b;
        padding: 20px;
        border-radius: 15px;
    }

    .card h3 {
        color: #F58220;
        margin-bottom: 10px;
    }

    .testimonial {
        background: #0f172a;
        padding: 20px;
        border-radius: 15px;
        font-style: italic;
    }

    .sticky {
        position: fixed;
        bottom: 0;
        width: 100%;
        background: #020617;
        padding: 15px;
        text-align: center;
        border-top: 1px solid #1e293b;
    }

    .whatsapp-float {
        position: fixed;
        bottom: 80px;
        right: 20px;
        background: #25D366;
        color: #000;
        padding: 15px;
        border-radius: 50%;
        text-decoration: none;
    }

    .imagem-section {

        border: 2px solid #333;
        border-radius: 8px;
        max-width: 75%;
        height: auto;

    }

    .galeria {
        display: flex;
        /* ativa o flexbox */
        flex-direction: column;
        /* organiza em coluna (título em cima, imagem embaixo) */
        align-items: center;
        /* centraliza horizontalmente */
        justify-content: center;
        /* centraliza verticalmente (se tiver altura definida) */
        height: 100%;
        /* altura da section para demonstrar o efeito */
    }

    .galeria img {

        width: 100%;
        max-width: 100%;
        /* evita que a imagem ultrapasse os limites */
        height: auto;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    :root {
        --navy: #0B1B52;
        --navy2: #0D2168;
        --orange: #F47D20;
        --orange2: #FF9500;
        --white: #FFFFFF;
        --green: #00D46A;
        --dark: #060D28;
        --muted: rgba(255, 255, 255, 0.55);
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        background: var(--dark);
        font-family: 'Barlow', sans-serif;
        color: var(--white);
        overflow-x: hidden;
    }

    /* ANN BAR */
    .ann-bar {
        background: var(--orange);
        padding: 9px 20px;
        text-align: center;
        font-weight: 800;
        font-size: 0.82rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        position: relative;
        overflow: hidden;
    }

    .ann-bar::before {
        content: '';
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 0px, rgba(255, 255, 255, 0.05) 10px, transparent 10px, transparent 20px);
    }

    /* NAV */
    nav {
        padding: 18px 5vw;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: sticky;
        top: 0;
        z-index: 100;
        background: rgba(6, 13, 40, 0.93);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-logo {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 1.7rem;
        letter-spacing: 3px;
    }

    .nav-logo span {
        color: var(--orange);
    }

    .nav-cta {
        background: var(--orange);
        color: white;
        font-weight: 800;
        font-size: 0.8rem;
        letter-spacing: 1px;
        padding: 10px 20px;
        border-radius: 30px;
        text-decoration: none;
        text-transform: uppercase;
        transition: transform .2s, box-shadow .2s;
    }

    .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(244, 125, 32, 0.4);
    }

    /* HERO */
    .hero {
        min-height: 92vh;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 40px;
        padding: 80px 5vw 60px;
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(ellipse 70% 70% at 70% 40%, rgba(244, 125, 32, 0.1) 0%, transparent 60%),
            radial-gradient(ellipse 50% 60% at 0% 80%, rgba(13, 33, 104, 0.8) 0%, transparent 70%);
    }

    .hero-grid-bg {
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(244, 125, 32, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(244, 125, 32, 0.04) 1px, transparent 1px);
        background-size: 40px 40px;
        mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
    }

    .hero-left {
        position: relative;
        z-index: 2;
    }

    .hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(244, 125, 32, 0.12);
        border: 1px solid rgba(244, 125, 32, 0.3);
        color: var(--orange);
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 6px 14px;
        border-radius: 30px;
        margin-bottom: 24px;
        animation: fadeup .6s ease both;
    }

    .inaugural-pill {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(0, 212, 106, 0.1);
        border: 1px solid rgba(0, 212, 106, 0.3);
        color: var(--green);
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 6px 14px;
        border-radius: 30px;
        margin-bottom: 16px;
        animation: fadeup .6s .05s ease both;
    }

    .hero-h1 {
        font-family: 'Bebas Neue', sans-serif;
        font-size: clamp(3rem, 7vw, 5.5rem);
        line-height: 0.93;
        letter-spacing: 2px;
        animation: fadeup .6s .1s ease both;
    }

    .hero-h1 .accent {
        color: var(--orange);
    }

    .hero-h1 .stroke {
        -webkit-text-stroke: 2px white;
        color: transparent;
    }

    .hero-sub {
        font-size: 1.05rem;
        color: var(--muted);
        line-height: 1.7;
        margin: 22px 0 32px;
        max-width: 460px;
        animation: fadeup .6s .2s ease both;
    }

    .hero-sub strong {
        color: white;
        font-weight: 700;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        animation: fadeup .6s .3s ease both;
    }

    .btn-primary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: linear-gradient(135deg, var(--orange), var(--orange2));
        color: white;
        font-weight: 800;
        font-size: 1rem;
        padding: 18px 32px;
        border-radius: 14px;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: transform .2s, box-shadow .2s;
        width: fit-content;
        position: relative;
        overflow: hidden;
    }

    .btn-primary::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -60%;
        width: 40%;
        height: 200%;
        background: rgba(255, 255, 255, 0.18);
        transform: skewX(-20deg);
        transition: left .5s ease;
    }

    .btn-primary:hover::after {
        left: 130%;
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 40px rgba(244, 125, 32, 0.45);
    }

    .free-note {
        font-size: 0.75rem;
        color: var(--green);
        font-weight: 700;
    }

    .btn-ghost {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--muted);
        font-size: 0.85rem;
        font-weight: 600;
        text-decoration: none;
        border: none;
        cursor: pointer;
        background: transparent;
        width: fit-content;
        transition: color .2s;
    }

    .btn-ghost:hover {
        color: white;
    }

    .btn-ghost .arr {
        transition: transform .2s;
    }

    .btn-ghost:hover .arr {
        transform: translateX(4px);
    }

    /* COUNTDOWN */
    .countdown-wrap {
        animation: fadeup .6s .4s ease both;
        margin-top: 32px;
    }

    .countdown-label {
        font-size: 0.7rem;
        font-weight: 700;
        color: var(--muted);
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .countdown {
        display: flex;
        gap: 10px;
        align-items: center;
    }

    .cd-unit {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        width: 58px;
        text-align: center;
        padding: 8px 6px;
    }

    .cd-num {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 1.8rem;
        color: var(--orange);
        line-height: 1;
    }

    .cd-lbl {
        font-size: 0.58rem;
        color: var(--muted);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
    }

    .cd-sep {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 1.5rem;
        color: var(--orange);
        opacity: .5;
        animation: blink 1s infinite;
    }

    @keyframes blink {

        0%,
        100% {
            opacity: .5
        }

        50% {
            opacity: .1
        }
    }

    /* HERO RIGHT — market data cards */
    .hero-right {
        position: relative;
        z-index: 2;
        animation: fadeup .6s .2s ease both;
    }

    .market-cards {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .market-card {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        padding: 18px 20px;
        display: flex;
        align-items: flex-start;
        gap: 14px;
        transition: border-color .3s, transform .3s;
    }

    .market-card:hover {
        border-color: rgba(244, 125, 32, 0.35);
        transform: translateX(6px);
    }

    .mc-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        flex-shrink: 0;
    }

    .ico-o {
        background: rgba(244, 125, 32, 0.15);
    }

    .ico-g {
        background: rgba(0, 212, 106, 0.12);
    }

    .ico-b {
        background: rgba(100, 140, 255, 0.12);
    }

    .mc-body {}

    .mc-num {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 1.7rem;
        color: var(--orange);
        line-height: 1;
    }

    .mc-num.green {
        color: var(--green);
    }

    .mc-desc {
        font-size: 0.8rem;
        color: var(--muted);
        line-height: 1.45;
        margin-top: 2px;
    }

    .mc-desc strong {
        color: white;
    }

    .mc-source {
        font-size: 0.6rem;
        color: rgba(255, 255, 255, 0.25);
        margin-top: 4px;
        font-style: italic;
    }

    /* TRUST BAR */
    .trust-bar {
        background: rgba(255, 255, 255, 0.03);
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding: 20px 5vw;
        display: flex;
        justify-content: center;
        gap: clamp(20px, 5vw, 60px);
        flex-wrap: wrap;
    }

    .trust-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.82rem;
        font-weight: 600;
        color: var(--muted);
        white-space: nowrap;
    }

    .trust-item strong {
        color: white;
    }

    /* SECTIONS */
    section.inner {
        padding: 100px 5vw;
        max-width: 1100px;
        margin: 0 auto;
    }

    .section-tag {
        display: inline-block;
        font-size: .7rem;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--orange);
        margin-bottom: 14px;
    }

    .section-h2 {
        font-family: 'Bebas Neue', sans-serif;
        font-size: clamp(2.4rem, 5vw, 4rem);
        line-height: .95;
        letter-spacing: 1px;
        margin-bottom: 14px;
    }

    .section-sub {
        font-size: 1rem;
        color: var(--muted);
        line-height: 1.7;
        max-width: 520px;
        margin-bottom: 44px;
    }

    /* WHY SECTION */
    .why-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 16px;
    }

    .why-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 16px;
        padding: 24px;
        transition: border-color .3s;
    }

    .why-card:hover {
        border-color: rgba(244, 125, 32, 0.3);
    }

    .why-icon {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .why-title {
        font-weight: 800;
        font-size: .95rem;
        margin-bottom: 8px;
    }

    .why-body {
        font-size: .83rem;
        color: var(--muted);
        line-height: 1.6;
    }

    /* COURSES */
    .courses-bg {
        background: linear-gradient(180deg, transparent 0%, rgba(244, 125, 32, 0.04) 50%, transparent 100%);
        padding: 100px 5vw;
    }

    .courses-inner {
        max-width: 1100px;
        margin: 0 auto;
    }

    .courses-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 18px;
        margin-top: 44px;
    }

    .course-card {
        background: var(--navy);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 20px;
        padding: 26px;
        transition: transform .3s, border-color .3s, box-shadow .3s;
        position: relative;
        overflow: hidden;
    }

    .course-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--orange), var(--orange2));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .3s;
    }

    .course-card:hover {
        transform: translateY(-6px);
        border-color: rgba(244, 125, 32, 0.25);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    }

    .course-card:hover::before {
        transform: scaleX(1);
    }

    .course-card.featured {
        border-color: rgba(244, 125, 32, 0.3);
        background: linear-gradient(135deg, var(--navy) 0%, rgba(244, 125, 32, 0.08) 100%);
    }

    .course-card.featured::before {
        transform: scaleX(1);
    }

    .feat-tag {
        position: absolute;
        top: 16px;
        right: 16px;
        background: var(--orange);
        color: white;
        font-size: .6rem;
        font-weight: 800;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        padding: 4px 10px;
        border-radius: 20px;
    }

    .course-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        background: rgba(244, 125, 32, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        margin-bottom: 16px;
    }

    .course-num {
        font-size: .65rem;
        font-weight: 700;
        color: var(--orange);
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 6px;
    }

    .course-title {
        font-family: 'Barlow Condensed', sans-serif;
        font-weight: 800;
        font-size: 1.25rem;
        text-transform: uppercase;
        letter-spacing: .5px;
        margin-bottom: 10px;
    }

    .course-desc {
        font-size: .82rem;
        color: var(--muted);
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .market-chip {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(0, 212, 106, 0.08);
        border: 1px solid rgba(0, 212, 106, 0.2);
        color: var(--green);
        font-size: .72rem;
        font-weight: 700;
        padding: 5px 12px;
        border-radius: 20px;
    }

    .market-chip-source {
        font-size: .58rem;
        color: rgba(0, 212, 106, 0.55);
        font-weight: 500;
        margin-top: 3px;
        display: block;
    }

    /* MARKET DATA SECTION */
    .market-section {
        padding: 100px 5vw;
        background: rgba(255, 255, 255, 0.02);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .market-inner {
        max-width: 1100px;
        margin: 0 auto;
    }

    .market-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
        margin-top: 44px;
    }

    .stat-card {
        background: var(--navy);
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 18px;
        padding: 28px 22px;
        text-align: center;
        transition: transform .3s, border-color .3s;
    }

    .stat-card:hover {
        transform: translateY(-4px);
        border-color: rgba(244, 125, 32, 0.3);
    }

    .stat-num {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 3rem;
        color: var(--orange);
        line-height: 1;
    }

    .stat-label {
        font-size: .85rem;
        font-weight: 700;
        color: white;
        margin: 6px 0 4px;
    }

    .stat-source {
        font-size: .62rem;
        color: rgba(255, 255, 255, 0.25);
        font-style: italic;
    }

    .market-disclaimer {
        font-size: .75rem;
        color: rgba(255, 255, 255, 0.25);
        font-style: italic;
        margin-top: 28px;
        line-height: 1.5;
    }

    /* DIFERENTIALS */
    .diff-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 16px;
    }

    .diff-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 16px;
        padding: 24px;
        display: flex;
        gap: 16px;
        align-items: flex-start;
        transition: border-color .3s;
    }

    .diff-card:hover {
        border-color: rgba(244, 125, 32, 0.3);
    }

    .diff-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: rgba(244, 125, 32, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        flex-shrink: 0;
    }

    .diff-title {
        font-weight: 800;
        font-size: .9rem;
        margin-bottom: 6px;
    }

    .diff-body {
        font-size: .8rem;
        color: var(--muted);
        line-height: 1.6;
    }

    /* FINAL CTA */
    .final-cta {
        padding: 100px 5vw;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .final-cta::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(244, 125, 32, 0.1) 0%, transparent 70%);
    }

    .cta-inner {
        max-width: 680px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .cta-inner .section-h2 {
        font-size: clamp(2.8rem, 6vw, 5rem);
        margin-bottom: 18px;
    }

    .cta-inner .section-sub {
        margin: 0 auto 36px;
        max-width: 500px;
    }

    .perks {
        display: flex;
        justify-content: center;
        gap: 24px;
        flex-wrap: wrap;
        margin-bottom: 36px;
    }

    .perk {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: .82rem;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.7);
    }

    .perk-check {
        color: var(--green);
    }

    .wp-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        background: #25D366;
        color: white;
        font-weight: 800;
        font-size: 1.1rem;
        padding: 20px 40px;
        border-radius: 16px;
        text-decoration: none;
        transition: transform .2s, box-shadow .2s;
        position: relative;
        overflow: hidden;
    }

    .wp-btn::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -60%;
        width: 40%;
        height: 200%;
        background: rgba(255, 255, 255, 0.15);
        transform: skewX(-20deg);
        transition: left .5s ease;
    }

    .wp-btn:hover::after {
        left: 130%;
    }

    .wp-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 40px rgba(37, 211, 102, 0.4);
    }

    .wp-icon-lg {
        font-size: 1.5rem;
    }

    .wp-sub {
        display: block;
        font-size: .7rem;
        font-weight: 600;
        opacity: .8;
        margin-top: 3px;
        letter-spacing: 0;
    }

    .cta-note {
        font-size: .78rem;
        color: var(--muted);
        margin-top: 16px;
    }

    /* FOOTER */
    footer {
        background: rgba(0, 0, 0, 0.4);
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        padding: 28px 5vw;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .footer-logo {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 1.4rem;
        letter-spacing: 2px;
    }

    .footer-logo span {
        color: var(--orange);
    }

    .footer-info {
        font-size: .78rem;
        color: var(--muted);
    }

    .footer-info a {
        color: var(--orange);
        text-decoration: none;
    }

    /* FLOATING WP */
    .float-wp {
        position: fixed;
        bottom: 28px;
        right: 28px;
        width: 60px;
        height: 60px;
        background: #25D366;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.7rem;
        text-decoration: none;
        box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
        z-index: 200;
        animation: floatpop 3s ease-in-out infinite;
        transition: transform .2s;
    }

    .float-wp:hover {
        transform: scale(1.1);
    }

    @keyframes floatpop {

        0%,
        100% {
            transform: translateY(0)
        }

        50% {
            transform: translateY(-8px)
        }
    }

    /* ANIMATIONS */
    @keyframes fadeup {
        from {
            opacity: 0;
            transform: translateY(24px)
        }

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }

    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity .6s ease, transform .6s ease;
    }

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* RESPONSIVE */
    @media(max-width:768px) {
        .hero {
            grid-template-columns: 1fr;
            padding: 50px 5vw 60px;
            min-height: auto;
        }

        .hero-right {
            display: none;
        }

        footer {
            flex-direction: column;
            text-align: center;
        }
    }

    .logo-img {
        height: 50px;
        /* ajuste conforme necessário */
        width: auto;
        display: block;
    }

    .nav-logo {
        display: flex;
        align-items: center;
    }

    .logo-img {
        height: 50px;
    }

    .calendar-btn {
        background: var(--navy);
        color: var(--orange);
        border: 2px solid var(--orange);
    }

    .nav-actions {
        display: flex;
        align-items: center;
        gap: .75rem;
    }

    .nav-calendar {
        display: inline-flex;
        align-items: center;
        gap: .4rem;
        background: rgba(255, 200, 0, .12);
        border: 1.5px solid rgba(255, 200, 0, .45);
        color: #ffd700;
        font-size: 0.95rem;
        font-weight: 700;
        padding: .5rem .9rem;
        border-radius: 999px;
        text-decoration: none;
        white-space: nowrap;
    }

    /* Responsivo */
    @media (max-width: 768px) {

        nav {
            flex-direction: column;
            gap: 12px;
            padding: 15px;
        }

        .nav-actions {
            width: 100%;
            flex-direction: column;
            gap: 10px;
        }

        .nav-calendar,
        .nav-cta {
            width: 100%;
            justify-content: center;
            text-align: center;
        }

        .nav-calendar {
            font-size: 0.85rem;
            padding: .7rem 1rem;
        }

        .nav-cta {
            font-size: 0.85rem;
        }
    }