/* ==========================================================================
   Design System & Variables
   Theme: Luxury Boutique (Plum Purple, Classic Gold, Clean Whites)
   ========================================================================== */
:root {
    /* Colors from new palette */
    --primary-bg: #FCFBFF;
    /* Mantendo fundo clarinho para respiro */
    --plum-dark: #2E1442;
    /* Círculo 2 - Roxo Escuro */
    --plum-light: #6B4582;
    /* Círculo 1 - Roxo Médio */
    --plum-accent: #986BA9;
    /* Círculo 3 - Roxo Claro/Lilás */
    --plum-soft: #D8A9D1;
    /* Círculo 5 - Lavanda claro */
    --plum-black: #110617;
    /* Círculo 4 - Quase preto */

    --gold-classic: #f8cb46;
    --gold-hover: #EABF45;

    --text-dark: #110617;
    /* Usando o roxo mais escuro para o texto principal */
    --text-mutated: #6B4582;
    /* Texto secundário usando roxo médio */
    --text-light: #F8FAFC;

    --card-bg: #FFFFFF;
    --card-shadow: 0 10px 40px -10px rgba(46, 20, 66, 0.08);
    /* rgba(46,20,66) corresponds to --plum-dark */
    --card-border: rgba(248, 203, 70, 0.15);
    /* rgba(248,203,70) corresponds to --gold-classic */

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    /* Luxo, elegante */
    --font-body: 'Inter', sans-serif;
    /* Limpa, moderna, fácil de ler nas telas pequenas */

    /* Spacings */
    --space-s: 16px;
    --space-m: 32px;
    --space-l: 64px;
    --space-xl: 96px;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-bg);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--plum-dark);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    padding: 24px 0;
    background: transparent;
    position: absolute;
    width: 100%;
    z-index: 10;
}

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--plum-dark);
    text-align: center;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    padding: 160px 0 80px;
    background:
        radial-gradient(circle at top right, rgba(248, 203, 70, 0.05) 0%, transparent 40%),
        radial-gradient(circle at bottom left, rgba(107, 69, 130, 0.03) 0%, transparent 40%);
    text-align: center;
}

.super-headline {
    font-size: 48px;
    max-width: 800px;
    margin: 0 auto 24px;
    letter-spacing: -0.02em;
}

.sub-headline {
    font-size: 18px;
    color: var(--text-mutated);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* ==========================================================================
   Buttons & CTAs
   ========================================================================== */
.cta-primary,
.cta-card {
    display: inline-block;
    background-color: var(--plum-dark);
    color: var(--text-light);
    font-weight: 500;
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(46, 20, 66, 0.15);
}

.cta-primary:hover,
.cta-card:hover {
    background-color: var(--plum-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 20, 66, 0.25);
}

.cta-card {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    margin-top: auto;
}

/* Destacando o botão principal do produto "Core" */
.cta-featured {
    background-color: var(--gold-classic);
    color: #110617;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(248, 203, 70, 0.3);
}

.cta-featured:hover {
    background-color: var(--gold-hover);
    box-shadow: 0 8px 20px rgba(248, 203, 70, 0.4);
}

/* ==========================================================================
   Bridge Section (Empatia)
   ========================================================================== */
.bridge {
    padding: 60px 0;
    background-color: white;
}

.empathy-text {
    font-size: 20px;
    font-family: var(--font-heading);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-mutated);
    line-height: 1.5;
}

.empathy-text strong {
    color: var(--plum-dark);
    display: block;
    margin-top: 16px;
}

/* ==========================================================================
   Solutions Hub (Cards)
   ========================================================================== */
.solutions-hub {
    padding: 80px 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
    align-items: stretch;
}

.solution-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(46, 20, 66, 0.12);
    border-color: var(--gold-classic);
}

.card-featured {
    border: 2px solid var(--gold-classic);
    transform: scale(1.02);
}

.card-featured:hover {
    transform: scale(1.02) translateY(-8px);
}

/* Tags */
.card-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--card-border);
    white-space: nowrap;
}

.tag-bestseller {
    color: var(--plum-dark);
}

.tag-safe {
    color: #2E7D32;
}

.tag-mom {
    color: #D81B60;
}

/* Imagens dos Produtos */
.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.img-caption {
    font-size: 11px;
    color: var(--text-mutated);
    text-align: center;
    font-style: italic;
    margin-bottom: 24px;
    opacity: 0.8;
}

.card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 22px;
    margin-bottom: 12px;
}

.card-desc {
    font-size: 15px;
    color: var(--text-mutated);
    margin-bottom: 16px;
}

.card-objection {
    font-size: 13px;
    font-style: italic;
    color: var(--plum-light);
    margin-bottom: 24px;
    border-left: 2px solid var(--gold-classic);
    padding-left: 8px;
    margin-bottom: auto;
    /* Pushes the button to the bottom */
    padding-bottom: 24px;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
    padding: 80px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 48px;
}

.faq-accordion {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 24px 0;
}

.faq-question {
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    color: var(--plum-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-weight: 300;
    font-size: 24px;
    color: var(--gold-classic);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: var(--text-mutated);
    padding-top: 0;
    font-size: 15px;
}

.faq-item.active .faq-answer {
    max-height: 150px;
    padding-top: 16px;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    padding: 60px 0 24px;
    background-color: var(--plum-dark);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 24px;
    color: white;
    margin-bottom: 16px;
}

.footer-mission {
    max-width: 400px;
    margin: 0 auto 32px;
    font-size: 14px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--gold-classic);
}

.support-link {
    color: var(--gold-classic);
    font-weight: 600;
}

.copyright {
    font-size: 12px;
    opacity: 0.5;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 900px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-featured {
        transform: scale(1);
    }

    .card-featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 650px) {
    .super-headline {
        font-size: 36px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}