/* ============================================
   REINO EM CORES KIDS — CSS PRINCIPAL
   Mobile-First, Leve e Otimizado para Conversão
   ============================================ */

:root {
    --primary:    #FF7B00;
    --secondary:  #1E88E5;
    --accent:     #E53935;
    --green:      #2E7D32;
    --green-btn:  #43A047;
    --green-dark: #2E7D32;
    --yellow:     #F9A825;
    --purple:     #8E24AA;
    --light:      #F9FAFB;
    --white:      #FFFFFF;
    --dark:       #1A1A2E;
    --gray:       #6B7280;
    --gray-light: #E5E7EB;
    --radius:     16px;
    --shadow:     0 4px 24px rgba(0,0,0,0.10);
}

/* RESET */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito', sans-serif;
    background: var(--light);
    color: var(--dark);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; }

/* CONTAINER */
.container {
    width: 92%;
    max-width: 680px;
    margin: 0 auto;
    padding: 2.5rem 0;
}

/* TIPOGRAFIA */
h1 {
    font-family: 'Nunito', sans-serif; /* Changed from Fredoka One */
    font-weight: 900;
    font-size: 2.2rem;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1rem;
}

h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    color: var(--dark);
    text-align: center;
    margin-bottom: 1rem;
}

h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 0.4rem;
}

p {
    font-size: 1.05rem;
    color: #374151;
    text-align: center;
}

/* ============================================
   BOTÃO CTA
   ============================================ */
.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem; /* Increased gap for icon */
    width: 100%;
    background: linear-gradient(135deg, var(--green-btn), var(--green-dark));
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.15rem;
    text-align: center;
    padding: 1.1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 6px 0 #1B5E20, 0 8px 20px rgba(67,160,71,0.35);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    margin: 1.2rem 0;
}

.cta-button i {
    font-size: 1.3rem; /* Icon size */
}

.cta-button:active {
    transform: translateY(5px);
    box-shadow: 0 1px 0 #1B5E20;
}

.cta-button.large {
    font-size: 1.25rem;
    padding: 1.3rem 1.5rem;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.04); }
}
.pulse { animation: pulse 2.2s ease-in-out infinite; }

/* ============================================
   HEADER
   ============================================ */
.header {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.09);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-inner {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo { width: 90px; }

.header-cta {
    background: var(--green-btn); /* Changed from primary to green */
    color: #fff;
    font-weight: 900;
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    letter-spacing: 0.3px;
    white-space: nowrap;
    box-shadow: 0 4px 0 #1B5E20;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.header-cta:active {
    transform: translateY(4px);
    box-shadow: 0 0 0 #1B5E20;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    background: linear-gradient(160deg, #FFF9E6 0%, #E3F2FD 100%);
    text-align: center;
    padding-bottom: 0;
}

.hero .container {
    padding-bottom: 0;
}

.hero-badge {
    display: inline-block;
    background: var(--yellow);
    color: #fff;
    font-weight: 900;
    font-size: 0.85rem;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.hero h1 {
    color: var(--secondary);
    font-size: 2rem;
}

.hero-sub {
    font-size: 1.1rem;
    color: #4B5563;
    margin-bottom: 0.5rem;
}

.hero-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 0.5rem 0 1rem;
}

.hero-trust span {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.hero-trust i { color: var(--green-btn); font-size: 1rem; }

.hero-img-wrap {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.hero-image-new {
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin: 0 auto;
}

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

/* ============================================
   PROBLEMA
   ============================================ */
.section-problema {
    background: #FFF3E0;
}

.problema-box {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow);
    border-left: 6px solid var(--accent);
    text-align: center;
}

.problema-box i {
    font-size: 4rem; /* Increased size */
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.problema-box h2 {
    color: var(--accent);
    font-size: 1.6rem;
}

/* ============================================
   SOLUÇÃO / FEATURES
   ============================================ */
.section-solucao {
    background: #fff;
}

.solucao-tag {
    display: inline-block;
    background: var(--secondary);
    color: #fff;
    font-weight: 900;
    font-size: 0.8rem;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.section-solucao .container {
    text-align: center;
}

.highlight {
    color: var(--primary);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 1.2rem 1rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: transform 0.2s;
}

.feature-card:hover { transform: translateY(-4px); }

.feature-icon {
    width: 64px; /* Slightly larger container */
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
}
.feature-icon i {
    font-size: 2.5rem; /* Increased icon size */
}

.feature-card h3 { font-size: 1rem; }
.feature-card p  { font-size: 0.88rem; text-align: center; color: var(--gray); }

/* ============================================
   PÚBLICO
   ============================================ */
.section-publico {
    background: linear-gradient(135deg, #1E88E5, #1565C0);
}

.section-publico h2 { color: #fff; }

.publico-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.publico-card {
    background: rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 1.3rem 1rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
}

.publico-card i {
    font-size: 3.5rem; /* Increased size */
    color: #FFD54F;
    margin-bottom: 0.6rem;
}

.publico-card h3 { color: #fff; font-size: 1rem; }
.publico-card p  { color: rgba(255,255,255,0.85); font-size: 0.85rem; }


/* ============================================
   OFERTA / PREÇO
   ============================================ */
.section-oferta {
    background: linear-gradient(160deg, #FFF9E6, #FFF3E0);
    text-align: center;
}

.oferta-tag {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-weight: 900;
    font-size: 0.85rem;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

.price-box {
    background: #fff;
    border-radius: 24px;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    border: 3px solid var(--primary);
    margin-top: 1.5rem;
}

.price-top { margin-bottom: 1.5rem; }

.old-price {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 0.3rem;
}

.new-price-label {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 0;
}

.new-price {
    font-family: 'Fredoka One', cursive;
    font-size: 4rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.new-price .cents {
    font-size: 2rem;
    vertical-align: super;
}

.payment-info {
    font-size: 0.9rem;
    color: var(--gray);
}

.price-includes {
    background: var(--light);
    border-radius: var(--radius);
    padding: 1.2rem;
    margin-bottom: 1rem;
    text-align: left;
}

.includes-title {
    font-weight: 900;
    font-size: 1rem;
    color: var(--dark);
    text-align: left;
    margin-bottom: 0.8rem;
}

.price-includes ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-includes li {
    font-size: 0.95rem;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.price-includes li i {
    color: var(--green-btn);
    font-size: 1.5rem; /* Increased size */
    flex-shrink: 0;
}

.garantia-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #E8F5E9;
    border-radius: var(--radius);
    padding: 1.2rem;
    margin-top: 1rem;
    text-align: left;
}

.garantia-box > i {
    font-size: 3.5rem; /* Increased size */
    color: var(--green-btn);
    flex-shrink: 0;
}

.garantia-box strong { display: block; font-size: 1rem; color: var(--dark); }
.garantia-box p { font-size: 0.88rem; color: #4B5563; text-align: left; margin: 0; }

.pagamentos {
    margin-top: 1.2rem;
}

.pagamentos p {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 0.6rem;
}

.pagamento-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem; /* Increased gap for better spacing */
}
.pagamento-icons i {
    font-size: 2.8rem; /* Slightly larger for consistency */
    color: var(--secondary); /* Consistent color */
}
.pagamento-icons .pix-logo {
    height: 40px; /* Increased size for better visibility */
    width: auto;
    vertical-align: middle; /* Align with other icons */
}

.faq-question i {
    font-size: 1.8rem; /* Increased size */
    transition: transform 0.3s ease;
    color: var(--secondary);
}

.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.faq-answer p {
    padding: 0 0 1.2rem;
    font-size: 0.95rem;
    color: #374151;
    text-align: left;
}

/* ============================================
   CTA FINAL
   ============================================ */
.section-cta-final {
    background: linear-gradient(160deg, #E3F2FD 0%, #FFF3E0 100%);
    text-align: center;
}

.section-cta-final h2 {
    color: var(--secondary);
    font-size: 1.8rem;
}

.section-cta-final p {
    font-size: 1.05rem;
    color: #4B5563;
    margin-bottom: 1.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 2rem 0;
    text-align: center;
    font-size: 0.85rem;
}

.footer .logo {
    width: 60px; /* Reduced size for footer */
    margin: 0 auto 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }

/* ============================================
   BOTÃO FLUTUANTE (MOBILE) 
   ============================================ */
.floating-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    z-index: 1000;
    display: none; /* Hidden by default, shown with JS */
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.floating-cta .cta-button {
    margin: 0;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
}

/* Media Queries para Desktop */
@media (min-width: 768px) {
    .container {
        max-width: 960px;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    p {
        font-size: 1.1rem;
    }

    .header-inner {
        padding: 1rem 0;
    }

    .logo {
        width: 120px;
    }

    .header-cta {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    .hero-badge {
        font-size: 0.95rem;
        padding: 0.5rem 1.5rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-sub {
        font-size: 1.25rem;
    }

    .hero-trust span {
        font-size: 0.9rem;
    }

    .hero-trust i {
        font-size: 1.1rem;
    }

    .hero-image-new {
        max-width: 500px;
    }

    .problema-box {
        padding: 2.5rem 2rem;
    }

    .problema-box i {
        font-size: 5rem;
    }

    .problema-box h2 {
        font-size: 2rem;
    }

    .solucao-tag {
        font-size: 0.9rem;
        padding: 0.4rem 1.2rem;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 72px;
        height: 72px;
        margin-bottom: 1rem;
    }

    .feature-icon i {
        font-size: 3rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.95rem;
    }

    .publico-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .publico-card {
        padding: 1.5rem 1.2rem;
    }

    .publico-card i {
        font-size: 4rem;
    }

    .publico-card h3 {
        font-size: 1.1rem;
    }

    .publico-card p {
        font-size: 0.9rem;
    }

    .price-box {
        padding: 2.5rem 2rem;
    }

    .new-price {
        font-size: 4.5rem;
    }

    .new-price .cents {
        font-size: 2.2rem;
    }

    .price-includes {
        padding: 1.5rem;
    }

    .includes-title {
        font-size: 1.1rem;
    }

    .price-includes li {
        font-size: 1rem;
    }

    .price-includes li i {
        font-size: 1.6rem;
    }

    .garantia-box {
        padding: 1.5rem;
    }

    .garantia-box > i {
        font-size: 4rem;
    }

    .garantia-box strong {
        font-size: 1.1rem;
    }

    .garantia-box p {
        font-size: 0.95rem;
    }

    .pagamentos p {
        font-size: 0.9rem;
    }

    .pagamento-icons {
        gap: 1.5rem;
    }

    .pagamento-icons i {
        font-size: 3rem;
    }

    .pagamento-icons .pix-logo {
        height: 35px;
    }

    .faq-list {
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-question {
        font-size: 1.15rem;
    }

    .faq-question i {
        font-size: 2rem;
    }

    .faq-answer p {
        font-size: 1rem;
    }

    .section-cta-final h2 {
        font-size: 2.2rem;
    }

    .section-cta-final p {
        font-size: 1.1rem;
    }

    .floating-cta {
        display: none !important; /* Hide floating CTA on desktop */
    }

    .footer .logo {
        width: 100px;
    }

    .footer-links {
        gap: 2rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }
}
