/* ================================================
   TOODO+ | LANDING PAGE
   landpage.css
   ================================================ */

:root {
    --primary:        #0d3b6e;
    --primary-l:      #1a5a9c;
    --primary-pale:   #e8f0f9;
    --secondary:      #7dbd4a;
    --secondary-h:    #6aaa39;
    --secondary-pale: #edf7e4;
    --orange:  #f4821f;
    --purple:  #8e4ea6;
    --teal:    #3ab5b0;
    --red:     #e8392b;
    --text:    #495057;
    --dark:    #1a2c42;
    --muted:   #6c757d;
    --border:  #dee2e6;
    --bg:      #f5f7fa;
    --white:   #ffffff;
    --shadow:  0 4px 28px rgba(13,59,110,.12);
    --shadow-l:0 8px 40px rgba(13,59,110,.18);
    --r:  16px;
    --rl: 24px;
    --tr: all .22s ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito', 'Segoe UI', sans-serif;
    color: var(--text);
    overflow-x: hidden;
}

/* ─── NAVBAR ─────────────────────────────────────── */
#mainNav {
    background: transparent;
    transition: background .3s, box-shadow .3s, padding .3s;
    padding: 14px 0;
}

#mainNav.scrolled {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 14px rgba(0,0,0,.08);
    padding: 10px 0;
}

.navbar-brand {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 100px;
    height: 40px;
}

.nav-logo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity .25s ease;
}

.nav-logo-scrolled { opacity: 0; }

#mainNav.scrolled .nav-logo-top { opacity: 0; }
#mainNav.scrolled .nav-logo-scrolled { opacity: 1; }

#mainNav .nav-link {
    font-weight: 700;
    font-size: .9rem;
    color: rgba(255,255,255,.88);
    padding: 7px 12px;
    border-radius: 6px;
    transition: var(--tr);
}

#mainNav.scrolled .nav-link { color: var(--dark); }

#mainNav .nav-link:hover,
#mainNav .nav-link.active { color: var(--secondary) !important; }

.btn-nav-cta {
    background: var(--secondary);
    color: white;
    font-weight: 800;
    font-size: .88rem;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    transition: var(--tr);
    display: inline-block;
}
.btn-nav-cta:hover {
    background: var(--secondary-h);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(125,189,74,.4);
}

/* Mobile collapse */
#mainNav .navbar-toggler {
    border: 2px solid rgba(255,255,255,.35);
    padding: 4px 8px;
}
#mainNav.scrolled .navbar-toggler { border-color: var(--border); }

#mainNav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,.85)' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
#mainNav.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(13,59,110,.85)' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
    #mainNav .navbar-collapse {
        background: var(--primary);
        border-radius: 14px;
        padding: 16px;
        margin-top: 10px;
        box-shadow: var(--shadow);
    }
    #mainNav.scrolled .navbar-collapse {
        background: var(--white);
        border: 1px solid var(--border);
    }
    #mainNav.scrolled .nav-link { color: var(--dark); }
    .btn-nav-cta { display: block; text-align: center; margin-top: 8px; }
}

/* ─── HERO ───────────────────────────────────────── */
.hero-section {
    background: var(--primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 130px 0 90px;
    position: relative;
    overflow: hidden;
}

.hero-dots { position: absolute; inset: 0; pointer-events: none; }

.dot {
    position: absolute;
    border-radius: 50%;
    animation: floatDot 7s ease-in-out infinite;
}
.dot:nth-child(1)  { animation-delay: 0s;   animation-duration: 7s; }
.dot:nth-child(2)  { animation-delay: 1s;   animation-duration: 8.5s; }
.dot:nth-child(3)  { animation-delay: 2s;   animation-duration: 6s; }
.dot:nth-child(4)  { animation-delay: .5s;  animation-duration: 9s; }
.dot:nth-child(5)  { animation-delay: 1.5s; animation-duration: 7.5s; }
.dot:nth-child(6)  { animation-delay: 3s;   animation-duration: 8s; }
.dot:nth-child(7)  { animation-delay: .8s;  animation-duration: 6.5s; }
.dot:nth-child(8)  { animation-delay: 2.5s; animation-duration: 7s; }
.dot:nth-child(9)  { animation-delay: 1.2s; animation-duration: 9.5s; }
.dot:nth-child(10) { animation-delay: 3.5s; animation-duration: 8s; }

@keyframes floatDot {
    0%,100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-22px) scale(1.04); }
}

.hero-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    border: 2px solid rgba(255,255,255,.25);
    border-radius: 14px;
    padding: 14px 32px;
    margin-bottom: 36px;
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(6px);
}
.hero-badge span {
    color: var(--secondary);
    font-weight: 800;
    font-size: 3rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}
.hero-badge strong {
    color: white;
    font-size: 1.05rem;
    font-weight: 900;
}

.hero-title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 28px;
}
.hero-highlight {
    color: var(--secondary);
    text-decoration: underline;
    text-decoration-color: rgba(125,189,74,.35);
    text-underline-offset: 5px;
}

.hero-subtitle {
    font-size: clamp(.95rem, 1.8vw, 1.1rem);
    color: rgba(255,255,255,.78);
    line-height: 1.75;
    margin-bottom: 44px;
    max-width: 580px;
    margin-inline: auto;
}
.hero-subtitle strong { color: rgba(255,255,255,.95); }

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary);
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    padding: 18px 44px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--tr);
    box-shadow: 0 8px 28px rgba(125,189,74,.38);
}
.btn-hero:hover {
    background: var(--secondary-h);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(125,189,74,.46);
}

.hero-scroll {
    margin-top: 52px;
    color: rgba(255,255,255,.3);
    font-size: 1.1rem;
    animation: heroBounce 2s ease-in-out infinite;
}
@keyframes heroBounce {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(10px); }
}

/* ─── SECTION COMMONS ─────────────────────────────── */
.sec-light { background: var(--bg);    padding: 88px 0; }
.sec-white { background: var(--white); padding: 88px 0; }
.sec-dark  { background: var(--primary); padding: 88px 0; }

.sec-header { margin-bottom: 56px; }

.sec-title {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 10px;
}

.sec-sub {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 0;
}

.sec-sub-note {
    font-size: .88rem;
    opacity: .75;
}

/* ─── HOW IT WORKS ─────────────────────────────────── */
.how-card {
    background: var(--white);
    border-radius: var(--r);
    padding: 36px 24px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--tr);
}
.how-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-l); }

.how-num {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-weight: 900;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.how-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: rgba(13,59,110,.06);
    color: var(--primary);
    font-size: 40px;
    line-height: 1;
}

.how-card h4 {
    font-weight: 900;
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 10px;
}

.how-card p {
    font-size: .88rem;
    color: var(--text);
    line-height: 1.65;
    margin: 0;
}

/* ─── BOX ITEMS ────────────────────────────────────── */
.box-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 20px;
}

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

.box-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--bg);
    border-radius: var(--r);
    padding: 18px 16px;
    border-left: 4px solid var(--secondary);
}

.box-item-full { grid-column: 1 / -1; }

.box-icon { font-size: 28px; line-height: 1; flex-shrink: 0; margin-top: 2px; }

.gift-icon {
    width: 1.15em;
    height: 1.15em;
    display: inline-block;
    vertical-align: -.18em;
    flex-shrink: 0;
}

.box-icon .gift-icon {
    width: 28px;
    height: 28px;
    vertical-align: top;
}

.box-item strong {
    display: block;
    color: var(--primary);
    font-weight: 800;
    font-size: .94rem;
    margin-bottom: 4px;
}

.box-item p {
    font-size: .84rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

.box-note {
    background: var(--primary-pale);
    color: var(--primary);
    border-radius: var(--r);
    padding: 14px 18px;
    font-size: .84rem;
    font-weight: 700;
    text-align: center;
}

/* ─── FRETE TAG ────────────────────────────────────── */
.frete-tag {
    display: inline-flex;
    align-items: center;
    background: var(--secondary-pale);
    color: var(--secondary-h);
    border-radius: 30px;
    padding: 9px 22px;
    font-weight: 800;
    font-size: .88rem;
    margin-top: 10px;
}

/* ─── PLAN CARDS ────────────────────────────────────── */
.plan-card {
    background: var(--white);
    border-radius: var(--rl);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--tr);
    position: relative;
}
.plan-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-l); }

.plan-card-featured {
    border: 3px solid var(--secondary);
    transform: scale(1.02);
    box-shadow: var(--shadow-l);
    z-index: 1;
}
.plan-card-featured:hover { transform: scale(1.02) translateY(-5px); }

.plan-popular {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: white;
    font-weight: 900;
    font-size: .78rem;
    padding: 5px 22px;
    border-radius: 0 0 12px 12px;
    white-space: nowrap;
    z-index: 2;
}

.plan-head {
    padding: 36px 24px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.plan-head-lite {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-l) 100%);
}
.plan-head-full {
    background: linear-gradient(135deg, #1a5a3a 0%, #5a9a2a 100%);
}

.plan-head-icon { font-size: 38px; margin-bottom: 6px; }

.plan-head-label {
    width: 100px;
    max-width: 72%;
    height: auto;
    display: block;
    margin: 0;
}

.plan-head-name {
    color: white;
    font-size: 2rem;
    font-weight: 900;
    margin: 0;
    line-height: 1;
}

.plan-body {
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.plan-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    color: var(--primary);
    margin-bottom: 24px;
    line-height: 1;
}
.p-curr  { font-size: 1.2rem; font-weight: 700; margin-top: 8px; }
.p-val   { font-size: 3.1rem; font-weight: 900; }
.p-cents { font-size: 1.3rem; font-weight: 700; }
.p-per   { font-size: .82rem; color: var(--muted); font-weight: 600; align-self: flex-end; margin-bottom: 5px; margin-left: 2px; }

.plan-feats {
    list-style: none;
    padding: 0;
    margin: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.plan-feats li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .88rem;
    font-weight: 600;
    color: var(--text);
}

.feat-ok {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--secondary-pale);
    color: var(--secondary-h);
    font-size: .72rem;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feat-ok-plus { background: rgba(125,189,74,.2); }

.feat-plus { color: var(--secondary-h); font-weight: 700; }

.btn-plan {
    display: block;
    text-align: center;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .98rem;
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    margin-top: 26px;
    transition: var(--tr);
}
.btn-plan-lite {
    background: var(--primary);
    color: white;
}
.btn-plan-lite:hover {
    background: var(--primary-l);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(13,59,110,.25);
}
.btn-plan-full {
    background: var(--secondary);
    color: white;
}
.btn-plan-full:hover {
    background: var(--secondary-h);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(125,189,74,.35);
}

/* ─── FAQ ───────────────────────────────────────────── */
.faq-cat { margin-bottom: 32px; }

.faq-cat-title {
    font-weight: 900;
    color: var(--primary);
    font-size: .97rem;
    margin-bottom: 12px;
    padding-left: 4px;
}

.faq-item {
    border: 1px solid var(--border) !important;
    border-radius: 10px !important;
    margin-bottom: 8px;
    overflow: hidden;
}

.faq-btn {
    font-family: 'Nunito', sans-serif !important;
    font-weight: 700 !important;
    color: var(--dark) !important;
    font-size: .93rem !important;
    background: white !important;
    box-shadow: none !important;
}
.faq-btn:not(.collapsed) {
    background: var(--primary-pale) !important;
    color: var(--primary) !important;
}

.faq-body {
    font-size: .88rem;
    color: var(--text);
    line-height: 1.72;
    padding-top: 10px !important;
}

.faq-body ul { padding-left: 18px; margin: 0; }
.faq-body ul li { margin-bottom: 6px; }

/* ─── CONTACTS ──────────────────────────────────────── */
.contact-logo {
    height: 76px;
    width: auto;
    border-radius: 14px;
    display: block;
    margin: 0 auto 28px;
}

.contact-title {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
}

.contact-institutional {
    color: rgba(255,255,255,.72);
    font-size: .95rem;
    line-height: 1.65;
    margin-bottom: 36px;
}
.contact-institutional strong { color: white; }

.contact-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .95rem;
    text-decoration: none;
    transition: var(--tr);
}

.btn-wpp  { background: #25d366; color: white; }
.btn-wpp:hover  { background: #1db954; color: white; transform: translateY(-2px); }

.btn-insta {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}
.btn-insta:hover { opacity: .88; color: white; transform: translateY(-2px); }

.btn-contact-assinar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--primary);
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--tr);
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-contact-assinar:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-2px);
}

/* ─── FOOTER ─────────────────────────────────────────── */
.lp-footer {
    background: #07172e;
    padding: 22px 0;
}
.footer-legal-links {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.footer-legal-links a {
    color: rgba(255,255,255,.62);
    font-size: .78rem;
    font-weight: 800;
    text-decoration: none;
}
.footer-legal-links a:hover { color: var(--secondary); }
.lp-footer p {
    color: rgba(255,255,255,.3);
    font-size: .8rem;
    margin: 0;
    font-weight: 600;
}
