/* ===========================================
   SuperFilho LP - Design Único e Impactante
   =========================================== */

:root {
    --primary: #7C3AED;
    --primary-dark: #6D28D9;
    --primary-light: #A78BFA;
    --secondary: #1F2937;
    --accent: #10B981;
    --gold: #FBBF24;
    --light: #F9FAFB;
    --white: #FFFFFF;
    --dark: #111827;
    --gray: #6B7280;
    --gray-light: #E5E7EB;

    --font: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-lg: 0 25px 60px rgba(0,0,0,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===========================================
   HEADER
   =========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    color: var(--dark);
}

.logo-mark {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
}

.logo-mark.small {
    width: 32px;
    height: 32px;
    font-size: 12px;
}

.btn-cta {
    padding: 12px 24px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ===========================================
   HERO - Video Fullscreen
   =========================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-video-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    pointer-events: none;
}

.video-container {
    width: 100%;
    height: 100%;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    cursor: pointer;
}

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

.play-button {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
}

.play-button:hover {
    background: var(--primary);
    transform: scale(1.1);
    border-color: var(--primary);
}

.play-button svg {
    width: 40px;
    height: 40px;
    color: white;
    margin-left: 5px;
}

.video-text {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    font-weight: 500;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
}

.hero-content h1 {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(14px, 2.5vw, 22px);
    font-weight: 600;
    color: white;
    margin-bottom: 28px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
    white-space: nowrap;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
}

.hero-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    transform: translateY(-4px);
}

.hero-badge img,
.hero-badge video {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 3px solid rgba(255,255,255,0.5);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.hero-badge span {
    font-size: 15px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .hero-badges {
        gap: 20px;
    }

    .hero-badge img,
    .hero-badge video {
        width: 85px;
        height: 85px;
    }

    .hero-badge span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero-badges {
        gap: 14px;
    }

    .hero-badge img,
    .hero-badge video {
        width: 70px;
        height: 70px;
    }

    .hero-badge span {
        font-size: 12px;
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(124,58,237,0.4);
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(124,58,237,0.5);
}

.btn-lg {
    padding: 20px 40px;
    font-size: 18px;
}

.btn-xl {
    padding: 24px 48px;
    font-size: 20px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.6);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; top: 8px; }
    50% { opacity: 0.3; top: 20px; }
}

/* ===========================================
   TAGS
   =========================================== */
.tag {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

/* ===========================================
   PRODUCTS - O QUE VOCÊ RECEBE
   =========================================== */
.products {
    padding: 100px 24px;
    background: var(--white);
}

.products-header {
    text-align: center;
    margin-bottom: 60px;
}

.products-header h2 {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    color: var(--dark);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.product-card {
    background: var(--light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-media {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.product-media img,
.product-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 24px;
    text-align: center;
}

.product-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.product-info p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
}

.products-cta {
    text-align: center;
    margin-top: 48px;
}

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* ===========================================
   GALLERY
   =========================================== */
.gallery {
    display: none; /* Oculto temporariamente */
    padding: 100px 24px;
    background: var(--light);
}

.gallery-header {
    text-align: center;
    margin-bottom: 48px;
}

.gallery-header h2 {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    color: var(--dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 48px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-video,
.gallery-image {
    aspect-ratio: 1;
    position: relative;
}

.gallery-item-large .gallery-video {
    aspect-ratio: auto;
    height: 100%;
}

.video-thumb {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    cursor: pointer;
    position: relative;
}

.video-thumb.small {
    aspect-ratio: 1;
}

.play-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.play-icon.small {
    width: 48px;
    height: 48px;
}

.play-icon.tiny {
    width: 36px;
    height: 36px;
}

.play-icon svg {
    width: 24px;
    height: 24px;
    color: white;
    margin-left: 3px;
}

.play-icon.small svg,
.play-icon.tiny svg {
    width: 16px;
    height: 16px;
}

.video-thumb:hover .play-icon {
    transform: scale(1.1);
}

.video-label {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    padding: 0 20px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    color: var(--gray);
}

.image-placeholder.book-open {
    background: linear-gradient(135deg, #FFE4D6 0%, #FFD4BE 100%);
    color: var(--primary-dark);
}

.image-placeholder.child-holding {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    color: #2E7D32;
}

.image-placeholder.puzzle {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    color: #1565C0;
}

.image-placeholder.photo {
    background: linear-gradient(135deg, #F3E5F5 0%, #E1BEE7 100%);
    color: #7B1FA2;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item-large .gallery-img {
    min-height: 400px;
}

.gallery-item:not(.gallery-item-large):not(.gallery-item-wide) .gallery-img {
    aspect-ratio: 1;
}

.image-placeholder.avatar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
}

.image-placeholder small {
    font-weight: 400;
    font-size: 12px;
    opacity: 0.8;
}

.gallery-label {
    padding: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    text-align: center;
}

/* Before/After */
.before-after {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 32px;
    height: 100%;
}

.before, .after {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.before .image-placeholder,
.after .image-placeholder {
    width: 120px;
    height: 120px;
    border-radius: var(--radius);
}

.before .label,
.after .label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray);
}

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

.arrow svg {
    width: 32px;
    height: 32px;
}

.gallery-cta {
    text-align: center;
}

/* ===========================================
   INSTAGRAM COMMENTS
   =========================================== */
.instagram-comments {
    padding: 60px 0;
    background: var(--dark);
}

.comments-wall {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.ig-comment {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transform: rotate(var(--rotation, 0deg));
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ig-comment:hover {
    transform: rotate(0deg) scale(1.03);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    z-index: 10;
}

@media (max-width: 900px) {
    .comments-wall {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .comments-wall {
        grid-template-columns: 1fr;
        max-width: 340px;
    }
}

.ig-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.ig-content {
    flex: 1;
}

.ig-content p {
    font-size: 14px;
    line-height: 1.4;
    color: var(--dark);
    margin: 0;
}

.ig-content strong {
    font-weight: 600;
    margin-right: 4px;
}

.ig-time {
    font-size: 12px;
    color: var(--gray);
    margin-top: 4px;
    display: block;
}

.ig-like {
    width: 16px;
    height: 16px;
    color: var(--gray);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.ig-like.liked {
    color: #ED4956;
}

/* ===========================================
   TESTIMONIALS STRIP (hidden)
   =========================================== */
.testimonials-strip {
    display: none;
    padding: 24px 0;
    background: var(--dark);
    overflow: hidden;
}

.testimonials-scroll {
    display: flex;
    gap: 24px;
    animation: scrollLeft 20s linear infinite;
    width: max-content;
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-video-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    flex-shrink: 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.testimonial-video-card:hover {
    background: rgba(255,255,255,0.1);
}

.testimonial-thumb {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-info strong {
    color: white;
    font-size: 14px;
}

.testimonial-info span {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}

/* ===========================================
   PACKAGES
   =========================================== */
.packages {
    padding: 100px 24px;
    background: var(--white);
}

.packages-header {
    text-align: center;
    margin-bottom: 48px;
}

.packages-header h2 {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    color: var(--dark);
}

.packages-grid {
    max-width: 1000px;
    margin: 0 auto;
}

/* Preview */
.product-preview {
    position: sticky;
    top: 100px;
}

.preview-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.preview-tab {
    padding: 10px 20px;
    background: var(--light);
    border: none;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.preview-tab.active {
    background: var(--primary);
    color: white;
}

.preview-display {
    position: relative;
    aspect-ratio: 1;
    background: var(--light);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.preview-item {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.preview-item.active {
    opacity: 1;
}

.preview-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 80%;
    height: 80%;
    border-radius: var(--radius);
}

.preview-placeholder.book-3d {
    background: linear-gradient(145deg, #fff 0%, #f0f0f0 100%);
    box-shadow: -10px 10px 30px rgba(0,0,0,0.15);
    border-left: 8px solid var(--gray-light);
}

.preview-placeholder.video-preview {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    color: white;
}

.preview-placeholder.puzzle-preview {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    color: #1565C0;
}

.preview-placeholder span {
    font-weight: 700;
    font-size: 18px;
}

.preview-placeholder small {
    font-size: 14px;
    opacity: 0.7;
}

.preview-img,
.preview-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

/* Package Cards */
.packages-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.package-card {
    position: relative;
    padding: 24px;
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    transition: all 0.3s ease;
    cursor: pointer;
}

.package-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.package-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(124,58,237,0.05) 0%, rgba(255,140,90,0.05) 100%);
}

.package-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    padding: 6px 14px;
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-full);
}

.package-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 16px;
}

.price-old {
    font-size: 14px;
    color: var(--gray);
    text-decoration: line-through;
}

.price-current {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}

.price-current small {
    font-size: 18px;
}

.price-discount {
    padding: 4px 10px;
    background: var(--accent);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--radius-full);
}

.package-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    list-style: none;
}

.package-items li {
    padding: 6px 12px;
    background: var(--light);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
    color: var(--dark);
}

.package-items li.not-included {
    opacity: 0.4;
    text-decoration: line-through;
}

.btn-package {
    width: 100%;
    padding: 14px;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-package:hover {
    background: var(--dark);
}

.btn-package.btn-featured {
    background: var(--primary);
}

.btn-package.btn-featured:hover {
    background: var(--primary-dark);
}

/* Guarantee Strip */
.guarantee-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px;
    margin-top: 48px;
    background: linear-gradient(135deg, rgba(29,185,84,0.1) 0%, rgba(29,185,84,0.05) 100%);
    border-radius: var(--radius);
    border: 1px solid rgba(29,185,84,0.2);
}

.guarantee-icon {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.guarantee-strip span {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
}

/* ===========================================
   THEMES
   =========================================== */
.themes {
    padding: 100px 24px;
    background: var(--light);
    overflow: hidden;
}

.themes-header {
    text-align: center;
    margin-bottom: 48px;
}

.themes-header h2 {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    color: var(--dark);
}

.themes-carousel {
    display: flex;
    gap: 20px;
    padding: 0 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-bottom: 48px;
}

.themes-carousel::-webkit-scrollbar {
    display: none;
}

.theme-card {
    flex-shrink: 0;
    width: 160px;
    cursor: pointer;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

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

.theme-visual {
    width: 160px;
    height: 160px;
    border-radius: var(--radius);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-visual.prince {
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
}

.theme-visual.princess {
    background: linear-gradient(135deg, #EC4899 0%, #BE185D 100%);
}

.theme-visual.astronaut {
    background: linear-gradient(135deg, #1F2937 0%, #4B5563 100%);
}

.theme-visual.superhero {
    background: linear-gradient(135deg, #EF4444 0%, #B91C1C 100%);
}

.theme-visual.pirate {
    background: linear-gradient(135deg, #F59E0B 0%, #B45309 100%);
}

.theme-visual.dino {
    background: linear-gradient(135deg, #10B981 0%, #047857 100%);
}

.theme-visual.custom {
    background: var(--white);
    border: 2px dashed var(--gray-light);
    color: var(--gray);
}

.theme-visual svg {
    width: 48px;
    height: 48px;
}

.theme-name {
    display: block;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
}

.themes-cta {
    text-align: center;
}

/* ===========================================
   FAQ
   =========================================== */
.faq {
    padding: 80px 24px;
    background: var(--white);
}

.faq h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 32px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    padding: 24px;
    background: var(--light);
    border-radius: var(--radius);
}

.faq-item strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* ===========================================
   FINAL CTA
   =========================================== */
.final-cta {
    padding: 100px 24px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    text-align: center;
}

.final-cta h2 {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.final-cta p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
}

.trust-badges span {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-badges span::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

/* ===========================================
   FOOTER
   =========================================== */
.footer {
    padding: 48px 24px 24px;
    background: var(--dark);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-copy {
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* ===========================================
   MODAL
   =========================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: var(--gray-light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close svg {
    width: 16px;
    height: 16px;
}

.modal-close:hover {
    background: var(--gray);
}

.modal-close:hover svg {
    color: white;
}

.modal-content {
    padding: 48px 32px 32px;
}

.modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.modal-header h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.modal-header p {
    font-size: 14px;
    color: var(--gray);
}

/* Form */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    flex-direction: column;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 18px;
    background: var(--light);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-family: inherit;
    color: var(--dark);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

.form-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 8px 0;
}

.form-divider span {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    white-space: nowrap;
}

.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-light);
}

/* File Upload */
.file-upload {
    position: relative;
    cursor: pointer;
}

.file-upload input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.file-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px;
    background: var(--light);
    border: 2px dashed var(--gray-light);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.file-upload:hover .file-upload-content {
    border-color: var(--primary);
    background: rgba(124,58,237,0.05);
}

.file-upload-content svg {
    width: 32px;
    height: 32px;
    color: var(--gray);
}

.file-upload-content span {
    font-size: 14px;
    color: var(--gray);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-submit:hover {
    background: var(--primary-dark);
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--gray);
}

/* Review Summary */
.review-summary {
    background: var(--light);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 16px;
}

.review-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-light);
}

.review-item:last-child {
    border-bottom: none;
}

.review-label {
    font-size: 14px;
    color: var(--gray);
}

.review-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.review-item-highlight {
    background: var(--primary);
    margin: 12px -20px -20px;
    padding: 16px 20px;
    border-radius: 0 0 var(--radius) var(--radius);
    border-bottom: none;
}

.review-item-highlight .review-label,
.review-item-highlight .review-value {
    color: white;
    font-size: 15px;
}

/* ===========================================
   FORM STEPS
   =========================================== */
.form-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}

.step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gray-light);
    color: var(--gray);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.step-dot.active,
.step-dot.completed {
    background: var(--primary);
    color: white;
}

.step-line {
    width: 32px;
    height: 2px;
    background: var(--gray-light);
}

.step-line.active {
    background: var(--primary);
}

/* Form Steps Content */
.form-step {
    display: none;
}

.form-step.active {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}

.step-header {
    text-align: center;
    margin-bottom: 8px;
}

.step-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 4px;
}

.step-header p {
    font-size: 14px;
    color: var(--gray);
}

/* Navigation Buttons */
.form-buttons {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.btn-next,
.btn-back {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-next {
    flex: 1;
    background: var(--primary);
    color: white;
    margin-top: 8px;
}

.btn-next:hover {
    background: var(--primary-dark);
}

.btn-next svg,
.btn-back svg {
    width: 18px;
    height: 18px;
}

.btn-back {
    background: var(--light);
    color: var(--gray);
}

.btn-back:hover {
    background: var(--gray-light);
    color: var(--dark);
}

/* Package Options */
.package-options {
    display: flex;
    gap: 12px;
}

.package-option {
    flex: 1;
    cursor: pointer;
}

.package-option input {
    display: none;
}

.package-option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 20px 16px;
    background: var(--light);
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    transition: all 0.3s ease;
    text-align: center;
}

.package-option input:checked + .package-option-content {
    border-color: var(--primary);
    background: rgba(124,58,237,0.05);
}

.package-option-content strong {
    font-size: 14px;
    color: var(--dark);
}

.package-option-content span {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.package-option-content small {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(16,185,129,0.1);
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

@media (max-width: 480px) {
    .package-options {
        flex-direction: column;
    }

    .package-option-content {
        flex-direction: row;
        justify-content: space-between;
        padding: 14px 16px;
    }

    .package-option-content small {
        display: none;
    }
}

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

    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item-large .gallery-video {
        aspect-ratio: 16/9;
    }

    .packages-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .btn-lg {
        padding: 16px 28px;
        font-size: 16px;
    }

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

    .gallery-item-large,
    .gallery-item-wide {
        grid-column: span 1;
    }

    .packages-cards {
        gap: 12px;
    }

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

    .trust-badges {
        flex-direction: column;
        gap: 12px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .scroll-indicator {
        display: none;
    }

    .before-after {
        flex-direction: column;
        gap: 16px;
    }

    .arrow {
        transform: rotate(90deg);
    }

    .theme-card {
        width: 140px;
    }

    .theme-visual {
        width: 140px;
        height: 140px;
    }
}
