/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES (BrincaKids Locações)
   ========================================================================== */
:root {
    /* Color Palette */
    --color-bg-base: #FCFBF7;      /* Warm off-white, light and welcoming */
    --color-bg-card: #FFFFFF;      /* Pure white for cards */
    --color-text-main: #2D3748;    /* Dark slate for high readability */
    --color-text-muted: #4A5568;   /* Slate grey for high readability */
    
    /* Brand Colors (Theme: Green predominant from logo) */
    --color-primary: #32B947;      /* Fresh Green from Pinwheel */
    --color-primary-light: #EBFBF0;
    --color-secondary: #E52320;    /* Vibrant Red from Pinwheel stick/center */
    --color-secondary-light: #FDF2F2;
    --color-accent: #FFCC29;       /* Sunny Yellow from Kids/Pinwheel */
    --color-accent-light: #FFFDF0;
    --color-success: #3572E7;      /* Royal Blue from Pinwheel */
    --color-success-light: #EEF4FE;

    /* Brand Gradient from Logo Background */
    --gradient-brand: linear-gradient(135deg, #1098ad 0%, #73d13d 100%);

    /* Header height */
    --header-height: 140px;

    /* Fonts */
    --font-heading: 'Fredoka', cursive, sans-serif;
    --font-body: 'Outfit', sans-serif;

    /* Shadows (updated color to match new primary blue) */
    --shadow-sm: 0 4px 12px rgba(53, 114, 231, 0.05);
    --shadow-md: 0 8px 24px rgba(53, 114, 231, 0.08);
    --shadow-lg: 0 16px 36px rgba(53, 114, 231, 0.12);
    --shadow-hover: 0 20px 48px rgba(53, 114, 231, 0.16);

    /* Border Radius */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-pill: 9999px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--color-bg-base);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   REUSABLE LAYOUTS & UTILITIES
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
}

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

ul {
    list-style: none;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-primary {
    background-color: var(--color-primary);
    color: #FFFFFF;
    box-shadow: 0 8px 20px rgba(53, 114, 231, 0.3);
}

.btn-primary:hover {
    background-color: #2C64C9;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(53, 114, 231, 0.4);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: #FFFFFF;
    box-shadow: 0 8px 20px rgba(229, 35, 32, 0.3);
}

.btn-secondary:hover {
    background-color: #25D366;
    border-color: #25D366;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.4);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

/* Icons */
.icon-whatsapp {
    animation: float-mini 2s ease-in-out infinite alternate;
}

/* Background Card Badges */
.bg-pastel-blue { background-color: var(--color-primary-light); color: var(--color-primary); }
.bg-pastel-yellow { background-color: var(--color-accent-light); color: var(--color-accent); }
.bg-pastel-coral { background-color: var(--color-secondary-light); color: var(--color-secondary); }
.bg-pastel-green { background-color: var(--color-success-light); color: var(--color-success); }

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
/* ==========================================================================
   PAGE FIXED VIDEO BACKGROUND
   ========================================================================== */
.page-video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
}

.page-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: linear-gradient(135deg, rgba(16, 152, 173, 0.75) 0%, rgba(115, 209, 61, 0.75) 100%);
    pointer-events: none;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(252, 251, 247, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(74, 144, 226, 0.06);
    transition: all var(--transition-normal);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height, 140px);
    transition: height var(--transition-normal);
}

.logo {
    display: flex;
    align-items: center;
    flex: 1;
}

.main-nav {
    display: flex;
    justify-content: center;
}

.header-cta {
    display: flex;
    justify-content: flex-end;
    flex: 1;
}

.logo-img {
    height: 128px;
    width: auto;
    object-fit: contain;
    border-radius: 0; /* Override default img border-radius */
    transition: height var(--transition-normal);
}

.main-header.scrolled .logo-img {
    height: 80px;
}

.logo-img-footer {
    height: 144px;
    width: auto;
    object-fit: contain;
    border-radius: 0;
    margin-bottom: 8px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-main);
    position: relative;
    padding: 8px 0;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--color-secondary);
    border-radius: var(--radius-pill);
    transition: width var(--transition-normal), background-color var(--transition-normal);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-links li:nth-child(1) .nav-link:hover { color: var(--color-primary); }
.nav-links li:nth-child(1) .nav-link:hover::after { background-color: var(--color-primary); }

.nav-links li:nth-child(2) .nav-link:hover { color: var(--color-secondary); }
.nav-links li:nth-child(2) .nav-link:hover::after { background-color: var(--color-secondary); }

.nav-links li:nth-child(3) .nav-link:hover { color: var(--color-accent); }
.nav-links li:nth-child(3) .nav-link:hover::after { background-color: var(--color-accent); }

.nav-links li:nth-child(4) .nav-link:hover { color: var(--color-success); }
.nav-links li:nth-child(4) .nav-link:hover::after { background-color: var(--color-success); }

.nav-links li:nth-child(5) .nav-link:hover { color: var(--color-primary); }
.nav-links li:nth-child(5) .nav-link:hover::after { background-color: var(--color-primary); }

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--color-text-main);
    border-radius: 99px;
    transition: all var(--transition-normal);
}

/* Header dynamic shadow on scroll */
.main-header.scrolled {
    background-color: #FFFFFF;
    box-shadow: var(--shadow-sm);
    --header-height: 100px;
}
.main-header.scrolled .header-container {
    height: 100px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding-top: 180px;
    padding-bottom: 120px;
    background: transparent;
    color: #FFFFFF;
    overflow: hidden;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}

.hero-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-section .hero-title {
    color: #FFFFFF;
}

.hero-section .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.hero-section .hero-badge {
    background: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-section .stat-number {
    color: var(--color-accent);
}

.hero-section .stat-text {
    color: rgba(255, 255, 255, 0.8);
}

.hero-section .stat-divider {
    background-color: rgba(255, 255, 255, 0.3);
}

.hero-section .btn-primary {
    background-color: #FFFFFF;
    color: var(--color-primary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hero-section .btn-primary:hover {
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.hero-section strong {
    color: var(--color-accent);
    font-weight: 700;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background-color: var(--color-secondary-light);
    color: var(--color-secondary);
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-text-main);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 36px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
}

.stat-text {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(74, 144, 226, 0.15);
}

/* ==========================================================================
   DIFERENCIAIS SECTION
   ========================================================================== */
.diferenciais-section {
    position: relative;
    padding: 140px 0 100px 0;
    background-color: rgba(252, 251, 247, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.diferencial-card {
    background-color: var(--color-bg-card);
    padding: 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.diferencial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: transparent;
    transition: background-color var(--transition-normal);
    z-index: 2;
}

.diferencial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

#diff-bolinhas:hover::before { background-color: var(--color-accent); }
#diff-colchonete:hover::before { background-color: var(--color-primary); }
#diff-rede:hover::before { background-color: var(--color-secondary); }
#diff-monitor:hover::before { background-color: var(--color-success); }

.diferencial-img-container {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.diferencial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform var(--transition-slow);
}

.diferencial-card:hover .diferencial-img {
    transform: scale(1.05);
}

.diferencial-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 14px;
}

.card-description {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   BRINQUEDOS SECTION (CATÁLOGO)
   ========================================================================== */
.brinquedos-section {
    position: relative;
    padding: 100px 0 140px 0;
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.brinquedo-detail {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.brinquedo-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
}

.brinquedo-item.reverse {
    direction: rtl;
}

.brinquedo-item.reverse .brinquedo-info {
    direction: ltr; /* Reset text direction for readability */
}

/* ==========================================================================
   TOY GALLERIES (SLIDER)
   ========================================================================== */
.slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background-color: var(--color-bg-base);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.slider-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 10px);
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

/* Specific styling for video/img inside slider */
.slide.brinquedo-video, .slide.brinquedo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform var(--transition-slow);
}

.slider-container:hover .slide.active {
    transform: scale(1.03);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.85);
    border: none;
    color: var(--color-text-main);
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transition: opacity 0.3s ease, background-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
    z-index: 5;
}

.slider-container:hover .slider-btn {
    opacity: 1;
}

.slider-btn:hover {
    background-color: #FFFFFF;
    color: var(--color-primary);
    transform: translateY(-50%) scale(1.08);
}

.prev-btn {
    left: 16px;
}

.next-btn {
    right: 16px;
}

.slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
    background-color: rgba(0, 0, 0, 0.35);
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: opacity 0.3s ease;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.slider-dots .dot.active {
    background-color: #FFFFFF;
    transform: scale(1.25);
}

.product-badge {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.brinquedo-name {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 20px;
    line-height: 1.2;
}

.brinquedo-desc {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 28px;
}

.brinquedo-specs {
    margin-bottom: 36px;
}

.brinquedo-specs li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.brinquedo-specs li strong {
    min-width: 180px;
    font-family: var(--font-heading);
    color: var(--color-text-main);
}

.brinquedo-specs li::before {
    content: '⭐';
    margin-right: 12px;
    font-size: 1rem;
}

/* ==========================================================================
   COMBOS PREMIUM SECTION
   ========================================================================== */
.combos-section {
    position: relative;
    padding: 160px 0;
    background: linear-gradient(135deg, rgba(16, 152, 173, 0.8) 0%, rgba(115, 209, 61, 0.8) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
}

.combos-mini-badge {
    display: inline-flex;
    background-color: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.section-header.text-white .section-title {
    color: #FFFFFF;
}

.section-header.text-white .section-subtitle {
    color: #FFFFFF;
    opacity: 1 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.opacity-8 {
    opacity: 0.9;
}

.combos-showcase {
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.combo-card-highlighted {
    background-color: #FFFFFF;
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.15);
    padding: 56px 48px;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-normal);
}

.combo-card-highlighted:hover {
    transform: translateY(-5px);
}

.combo-card-highlighted::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-secondary));
}

.combo-tag {
    position: absolute;
    top: 24px;
    right: -48px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 48px;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.combo-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(74, 144, 226, 0.12);
    padding-bottom: 32px;
}

.combo-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
}

.combo-name {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    color: var(--color-text-main);
    margin-bottom: 8px;
}

.combo-desc {
    color: var(--color-text-muted);
    font-size: 1rem;
}

.combo-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.combo-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
}

.combo-features strong {
    color: var(--color-text-main);
}

.check-icon {
    flex-shrink: 0;
    color: var(--color-success);
    margin-top: 3px;
}

.combo-action {
    text-align: center;
}

.action-caption {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 14px;
}

/* ==========================================================================
   COMO FUNCIONA SECTION
   ========================================================================== */
.como-funciona-section {
    position: relative;
    padding: 160px 0 120px 0;
    background-color: rgba(252, 251, 247, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* ==========================================================================
   TESTIMONIALS (DEPOIMENTOS) SECTION
   ========================================================================== */
.testemunhos-section {
    position: relative;
    padding: 160px 0 120px 0;
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.testimonials-badge {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
}

.testemunhos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.testemunho-card {
    background-color: var(--color-bg-card);
    padding: 40px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testemunho-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.testemunho-card::before {
    content: '“';
    position: absolute;
    top: 20px;
    right: 32px;
    font-family: var(--font-heading);
    font-size: 5rem;
    color: rgba(53, 114, 231, 0.08);
    line-height: 1;
}

.stars {
    color: #FFCC29;
    font-size: 1.15rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testemunho-text {
    font-size: 0.975rem;
    color: #4A5568;
    line-height: 1.65;
    margin-bottom: 28px;
    font-style: italic;
    z-index: 1;
}

.testemunho-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    border-top: 1px solid rgba(74, 144, 226, 0.08);
    padding-top: 20px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-text-main);
}

.author-role {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   CHILDHOOD DIVISION DECORATIONS & VIDEOS
   ========================================================================== */
.childhood-divider {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 10;
    background-repeat: repeat-x;
    background-size: auto 100%;
}

.divider-kids {
    background-image: url('assets/kids-divider.jpg');
    top: 0;
    height: 60px;
}

.divider-lego-bottom {
    background-image: url('assets/lego-divider.png');
    bottom: 0;
    height: 48px;
}

.divider-lego-top {
    background-image: url('assets/lego-divider.png');
    top: 0;
    height: 48px;
    transform: rotate(180deg);
}

/* Video styles merged into slide styles above */

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.step-card {
    background-color: #FFFFFF;
    border-radius: var(--radius-md);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal);
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--color-text-main);
    margin-bottom: 12px;
}

.step-description {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.step-arrow {
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-section {
    position: relative;
    padding: 100px 0;
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

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

.faq-item {
    background-color: var(--color-bg-base);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid rgba(74, 144, 226, 0.08);
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(74, 144, 226, 0.3);
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text-main);
    text-align: left;
}

.faq-icon-toggle {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq-icon-toggle::before,
.faq-icon-toggle::after {
    content: '';
    position: absolute;
    background-color: var(--color-primary);
    border-radius: var(--radius-pill);
    transition: transform var(--transition-normal);
}

/* Horizontal line */
.faq-icon-toggle::before {
    top: 9px;
    left: 0;
    width: 20px;
    height: 2px;
}

/* Vertical line */
.faq-icon-toggle::after {
    top: 0;
    left: 9px;
    width: 2px;
    height: 20px;
}

/* Open states */
.faq-item.active {
    background-color: #FFFFFF;
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.faq-item.active .faq-icon-toggle::after {
    transform: rotate(90deg) scaleY(0);
}

.faq-item.active .faq-icon-toggle::before {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 32px 24px 32px;
    font-size: 0.975rem;
    color: var(--color-text-muted);
    border-top: 1px solid transparent;
    line-height: 1.7;
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */
.final-cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(253, 242, 242, 0.75) 0%, rgba(255, 253, 240, 0.75) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-align: center;
}

.final-cta-container {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.final-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 16px;
}

.final-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.davi-contact-number {
    font-family: var(--font-heading);
    margin-top: 18px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.btn-icon {
    gap: 12px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: rgba(45, 55, 72, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #FFFFFF;
    padding: 80px 0 24px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.brand-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    max-width: 340px;
}

.main-footer h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.main-footer h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 32px;
    height: 3px;
    background-color: var(--color-accent);
    border-radius: var(--radius-pill);
}

.footer-links-group ul li {
    margin-bottom: 14px;
}

.footer-links-group ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-links-group ul li a:hover {
    color: var(--color-accent);
}

.footer-contact-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.footer-contact-info a {
    color: var(--color-primary-light);
    font-weight: 600;
}

.footer-contact-info a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}

.footer-bottom-container {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   FLOATING WHATSAPP
   ========================================================================== */
.whatsapp-floating {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-floating-btn {
    width: 64px;
    height: 64px;
    background-color: #25D366;
    color: #FFFFFF;
    border-radius: var(--radius-pill);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    animation: wa-pulse 2s infinite;
}

.wa-floating-btn:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #20BA5A;
}

.wa-tooltip {
    background-color: #FFFFFF;
    color: var(--color-text-main);
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateX(20px);
    transition: all var(--transition-normal);
    pointer-events: none;
    white-space: nowrap;
    border: 1px solid rgba(74, 144, 226, 0.1);
}

.wa-tooltip.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-15px); }
}

@keyframes float-mini {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-3px); }
}

@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .step-arrow {
        transform: rotate(90deg);
        margin: 12px 0;
    }
    .brinquedo-item {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .brinquedo-item.reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .logo, .header-cta {
        flex: initial;
    }
    
    .hero-logo-container {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-left: auto;
        margin-right: auto;
        padding: 0 10px;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        width: 100%;
    }
    
    .hero-stats .stat-divider {
        display: none;
    }
    
    .hero-floating-card {
        display: none; /* Hide floating cards on mobile to reduce clutter */
    }
    
    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: var(--header-height, 140px);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height, 140px));
        background-color: #FFFFFF;
        padding: 40px 24px;
        transition: left var(--transition-normal), top var(--transition-normal), height var(--transition-normal);
        transition: left var(--transition-normal);
        box-shadow: var(--shadow-md);
        z-index: 999;
        display: block; /* Overrides display: flex on desktop */
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .nav-link {
        font-size: 1.2rem;
        width: 100%;
    }
    
    .header-cta {
        display: none; /* Hide header button on mobile */
    }
    
    /* Menu Active State Animation */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    /* Combos adjustments */
    .combo-card-highlighted {
        padding: 40px 24px;
    }
    
    .combo-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .brinquedo-specs li {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .brinquedo-specs li strong {
        min-width: auto;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .whatsapp-floating {
        bottom: 24px;
        right: 24px;
    }
    
    .wa-tooltip {
        display: none; /* Hide tooltip on small mobiles */
    }
}
