/* =========================================
   VARIÁVEIS DE CORES & TIPOGRAFIA
========================================= */
:root {
    /* Paleta Pastel Premium (Acolhedora e Infantil) */
    --lilac-pastel: #e0c3fc;
    --lilac-dark: #b886ee;
    --pink-baby: #ffcadd;
    --pink-dark: #ff8fab;
    --yellow-light: #fefae0;
    --yellow-glow: #ffe569;
    --blue-baby: #cce3de;
    --white: #ffffff;
    
    /* Textos e Sombras */
    --text-main: #4a4e69;
    --text-light: #7c7c8a;
    --text-white: #ffffff;
    --shadow-soft: 0 10px 30px rgba(184, 134, 238, 0.15);
    --shadow-glow: 0 0 25px rgba(255, 143, 171, 0.6);
    
    /* Fontes */
    --font-heading: 'Baloo 2', cursive;
    --font-body: 'Nunito', sans-serif;
}

/* =========================================
   RESETS E BASE
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: #faf5ff;
    background-image: 
        radial-gradient(var(--pink-baby) 1px, transparent 1px),
        radial-gradient(var(--blue-baby) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    position: relative;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

a { text-decoration: none; }

/* =========================================
   COMPONENTES GERAIS
========================================= */
.glass {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.highlight {
    color: var(--pink-dark);
    position: relative;
    display: inline-block;
}
.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: var(--yellow-glow);
    z-index: -1;
    border-radius: 10px;
    transform: rotate(-2deg);
}

.highlight-sad { color: #8390fa; }

.highlight-white {
    color: var(--yellow-glow);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: var(--text-main);
}

/* =========================================
   ANIMAÇÕES DE BACKGROUND
========================================= */
.bg-shapes {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: float 15s infinite alternate ease-in-out;
}
.shape-1 { width: 400px; height: 400px; background: var(--pink-baby); top: -100px; left: -100px; }
.shape-2 { width: 500px; height: 500px; background: var(--lilac-pastel); top: 20%; right: -150px; animation-delay: -3s; }
.shape-3 { width: 350px; height: 350px; background: var(--blue-baby); bottom: 10%; left: 10%; animation-delay: -7s; }
.shape-4 { width: 300px; height: 300px; background: var(--yellow-light); bottom: -50px; right: 20%; animation-delay: -1s; }

@keyframes float {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-40px) scale(1.1); }
}

/* =========================================
   BOTÕES
========================================= */
.btn-primary {
    background: linear-gradient(135deg, var(--pink-dark), var(--lilac-dark));
    color: var(--white);
    padding: 18px 35px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(255, 143, 171, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 3px solid rgba(255,255,255,0.4);
}
.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 25px rgba(255, 143, 171, 0.6);
}

.btn-secondary {
    background: var(--white);
    color: var(--lilac-dark);
    padding: 16px 30px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--lilac-pastel);
    transition: all 0.3s;
}
.btn-secondary:hover {
    background: var(--lilac-pastel);
    color: var(--text-main);
}

.pulse { animation: pulse 2s infinite; }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 143, 171, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(255, 143, 171, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 143, 171, 0); }
}

.giant-btn {
    width: 100%;
    justify-content: center;
    font-size: 1.5rem;
    padding: 22px;
}

/* =========================================
   BARRA DE URGÊNCIA
========================================= */
.urgency-bar {
    background: linear-gradient(90deg, #ff6b6b, var(--pink-dark));
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
#countdown {
    background: rgba(0,0,0,0.2);
    padding: 2px 8px;
    border-radius: 6px;
    font-family: monospace;
    font-size: 1.2rem;
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
    position: relative;
    padding: 80px 0 150px 0;
    overflow: hidden;
}
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}
.hero-left {
    flex: 1;
    max-width: 600px;
}
.social-proof-badge {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 25px;
    font-size: 0.95rem;
    gap: 10px;
    border: 2px solid var(--yellow-light);
}
.stars { color: #ffca28; }
.hero h1 {
    font-size: 3.8rem;
    color: var(--text-main);
    margin-bottom: 20px;
}
.hero .subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}
.benefits-list {
    list-style: none;
    margin-bottom: 40px;
}
.benefits-list li {
    font-size: 1.15rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-main);
    font-weight: 600;
}
.benefits-list li i {
    color: #4cd137;
    font-size: 1.3rem;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}
.mockup-img {
    max-width: 130%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}
.floating {
    animation: floatingObj 4s ease-in-out infinite;
}
@keyframes floatingObj {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

.wave-bottom {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}
.wave-bottom svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}
.wave-bottom .shape-fill { fill: var(--white); }

/* =========================================
   SEÇÃO DE DOR
========================================= */
.pain-section {
    background: var(--white);
    padding: 100px 0;
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.pain-card {
    padding: 30px 20px;
    text-align: center;
    background: #fffafa;
    transition: transform 0.3s;
}
.pain-card:hover {
    transform: translateY(-10px);
}
.pain-card .icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--pink-baby);
    color: var(--pink-dark);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px auto;
}
.pain-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

/* =========================================
   SEÇÃO SOLUÇÃO PREMIUM (3D)
========================================= */
.solution-section {
    padding: 100px 0;
    position: relative;
}

.solution-header {
    text-align: center;
    margin-bottom: 60px;
}

.solution-header h2 {
    font-size: 2.8rem;
    color: var(--text-main);
    display: inline-block;
    margin: 0 10px;
    vertical-align: middle;
}

/* Efeito da palavra "organizado" */
.title-3d {
    font-size: 5rem !important;
    color: #ff477e !important;
    font-family: var(--font-heading);
    text-transform: lowercase;
    font-weight: 800;
    text-shadow: 
        4px 4px 0 #fff,
        -4px -4px 0 #fff,
        4px -4px 0 #fff,
        -4px 4px 0 #fff,
        0px 10px 20px rgba(255, 71, 126, 0.3);
    transform: rotate(-3deg);
    display: inline-block;
    margin: 0 15px !important;
}

.solution-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.sol-card-premium {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    border-radius: 25px;
    border: 3px dashed rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sol-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Cores de Fundo Pastéis */
.pastel-pink { background-color: #fff0f5; }
.pastel-purple { background-color: #f3e8ff; }
.pastel-yellow { background-color: #fffde7; }

.card-content {
    flex: 1;
    padding-right: 20px;
}

.card-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.card-title i {
    font-size: 1.8rem;
    background: #ffffff;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* Cores Títulos/Ícones */
.icon-pink { color: #ff477e; }
.text-pink { color: #d81b60; }

.icon-purple { color: #9c27b0; }
.text-purple { color: #6a1b9a; }

.icon-orange { color: #ff9800; }
.text-orange { color: #e65100; }

.card-title h3 {
    font-size: 1.6rem;
    line-height: 1.1;
    font-weight: 800;
}

.card-content p {
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.4;
    font-weight: 600;
}

.card-img {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-img img {
    max-width: 130%;
    max-height: 130%;
    object-fit: contain;
    filter: drop-shadow(0 15px 20px rgba(0,0,0,0.2));
    transition: transform 0.4s ease;
}

.sol-card-premium:hover .card-img img {
    transform: scale(1.1) rotate(2deg);
}

/* =========================================
   GALERIA PREMIUM
========================================= */
.gallery-section {
    background: linear-gradient(to bottom, #ffffff, var(--pink-baby));
    padding: 100px 0;
}
.pinterest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}
.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.overlay-text {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--pink-dark);
    text-align: center;
    font-weight: bold;
    transition: bottom 0.3s ease;
}
.gallery-item:hover .overlay-text {
    bottom: 0;
}

/* =========================================
   SEÇÃO DE OFERTAS
========================================= */
.pricing-section {
    padding: 100px 0;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%23e0c3fc"/></svg>') repeat;
}
.pricing-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
}
.pricing-card {
    width: 100%;
    max-width: 400px;
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    position: relative;
}
.pricing-card.basic {
    background: #ffffff;
    border: 2px solid #eaeaea;
}
.pricing-card.premium {
    background: linear-gradient(145deg, #ffffff, #fff0f5);
    border: 3px solid var(--pink-dark);
    transform: scale(1.05);
    z-index: 10;
}
.glow-effect {
    box-shadow: 0 0 30px rgba(255, 143, 171, 0.4);
}
.popular-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--yellow-glow);
    color: #d35400;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-family: var(--font-heading);
    box-shadow: 0 5px 15px rgba(255, 229, 105, 0.5);
    letter-spacing: 1px;
}
.pricing-card h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}
.pricing-card .desc {
    color: var(--text-light);
    margin-bottom: 20px;
}
.price {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: baseline;
}
.price .currency { font-size: 2rem; margin-right: 5px; }
.price .cents { font-size: 2rem; }

.features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}
.features li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.features li i {
    color: #4cd137;
    background: #e8f8f5;
    padding: 5px;
    border-radius: 50%;
    font-size: 0.9rem;
}
.features li.disabled { color: #b2bec3; }
.features li.disabled i {
    color: #ff7675;
    background: #ffeaa7;
}

.btn-outline {
    display: inline-block;
    width: 100%;
    padding: 15px;
    border: 2px solid var(--lilac-dark);
    color: var(--lilac-dark);
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    transition: 0.3s;
}
.btn-outline:hover {
    background: var(--lilac-dark);
    color: white;
}
.payment-icon {
    width: 60px;
    margin-top: 15px;
    opacity: 0.8;
}

/* =========================================
   PROVA SOCIAL
========================================= */
.testimonials-section {
    padding: 100px 0;
    background: var(--white);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.testimonial-card {
    padding: 30px;
    background: #fdfbfb;
}
.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--pink-baby);
}
.user-info h4 {
    font-size: 1.2rem;
    color: var(--text-main);
}
.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
}

/* =========================================
   FAQ
========================================= */
.faq-section {
    padding: 100px 0;
}
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    margin-bottom: 15px;
    overflow: hidden;
    cursor: pointer;
}
.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
}
.faq-answer {
    max-height: 0;
    padding: 0 20px;
    transition: all 0.4s ease;
    opacity: 0;
    color: var(--text-light);
    line-height: 1.6;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 20px 20px;
    opacity: 1;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
    transition: 0.3s;
}

/* =========================================
   FINAL CTA
========================================= */
.final-cta {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--lilac-dark), var(--pink-dark));
    text-align: center;
    overflow: hidden;
}
.cta-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="1" fill="%23ffffff"/></svg>') repeat;
    opacity: 0.2;
}
.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}
.final-cta h2 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
}
.final-cta p {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}
.shadow-strong {
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}
.safe-checkout {
    margin-top: 20px;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
}

/* =========================================
   RODAPÉ
========================================= */
footer {
    background: #2d3436;
    color: white;
    padding: 60px 0 20px 0;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-info h3 {
    font-size: 1.8rem;
    color: var(--pink-baby);
    margin-bottom: 15px;
}
.footer-info p {
    color: #b2bec3;
    max-width: 300px;
}
.footer-security p {
    margin-bottom: 10px;
    font-weight: bold;
}
.payment-methods {
    font-size: 2rem;
    display: flex;
    gap: 15px;
    color: #dfe6e9;
    margin-bottom: 15px;
}
.digital-product { color: #55efc4; }
.copyright {
    text-align: center;
    border-top: 1px solid #636e72;
    padding-top: 20px;
    color: #b2bec3;
    font-size: 0.9rem;
}

/* =========================================
   ANIMAÇÕES DE SCROLL (REVEAL)
========================================= */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   MEDIA QUERIES (RESPONSIVO PARA TUDO)
========================================= */
@media (max-width: 1024px) {
    .solution-header h2 { font-size: 2.2rem; }
    .title-3d { font-size: 3.8rem !important; }
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-left { max-width: 100%; }
    .benefits-list li { justify-content: center; }
    .hero-buttons { justify-content: center; }
    .hero h1 { font-size: 3rem; }
    .mockup-img { max-width: 100%; margin-top: 30px; }
    .pricing-card.premium { transform: scale(1); }
}

@media (max-width: 850px) {
    .solution-grid-premium { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .section-title { font-size: 2.2rem; }
    .hero h1 { font-size: 2.5rem; }
    .price { font-size: 3.5rem; }
    .final-cta h2 { font-size: 2.5rem; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}

@media (max-width: 500px) {
    .solution-header h2 { display: block; margin: 5px 0; }
    .title-3d { font-size: 3.2rem !important; margin: 10px 0 !important; }
    
    .sol-card-premium {
        flex-direction: column-reverse;
        text-align: center;
        padding: 30px 20px;
    }
    .card-content {
        padding-right: 0;
        margin-top: 20px;
    }
    .card-title {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
    .card-img {
        width: 120px;
        height: 120px;
    }
}