/* 🎨 PREMIUM EROTIC-SOFT HIGH-END DESIGN */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@600;700&display=swap');

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores Premium */
    --preto-profundo: #000000;
    --cinza-carbono: #121212;
    --cinza-escuro: #0a0a0a;
    --cinza-medio: #1b1b1b;
    --branco-puro: #FFFFFF;
    --rosa-neon: #FF2DAF;
    --roxo-neon: #B43CFF;
    --azul-violeta: #4b4aff;
    --vermelho: #FF0033;
    
    /* Tipografia Premium */
    --font-titulo-premium: 'Playfair Display', serif;
    --font-titulo: 'Montserrat', sans-serif;
    --font-texto: 'Inter', sans-serif;
    
    /* Espaçamento */
    --espacamento-cards: 32px;
    --margem-mobile: 22px;
    --border-radius: 20px;
    --border-radius-grande: 28px;
    
    /* Efeitos Neon */
    --blur-card: blur(20px);
    --glow-rosa: 0 0 30px rgba(255, 45, 175, 0.6);
    --glow-roxo: 0 0 30px rgba(180, 60, 255, 0.6);
    --glow-forte: 0 0 40px rgba(255, 45, 175, 0.8), 0 0 80px rgba(180, 60, 255, 0.4);
    --sombra-card: 0 8px 32px rgba(0, 0, 0, 0.6);
    --neon-border: linear-gradient(135deg, var(--rosa-neon), var(--roxo-neon));
}

body {
    font-family: var(--font-texto);
    line-height: 1.6;
    color: var(--branco-puro);
    background: var(--preto-profundo);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-titulo);
    font-weight: 700;
    letter-spacing: 0.5px;
}

h1 {
    font-family: var(--font-titulo-premium);
    font-weight: 700;
}

.price, .amount {
    font-family: var(--font-titulo);
}

/* ===== HEADER PREMIUM ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
    padding: 20px 0;
}

header.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(255, 45, 175, 0.1);
    border-bottom: 1px solid rgba(255, 45, 175, 0.2);
    padding: 15px 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.header-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--rosa-neon);
    box-shadow: var(--glow-rosa);
    object-fit: cover;
    transition: all 0.3s ease;
}

.header-avatar:hover {
    transform: scale(1.05);
    box-shadow: var(--glow-forte);
}

.header-nome {
    font-family: var(--font-titulo-premium);
    font-size: 22px;
    font-weight: 600;
    color: var(--branco-puro);
    letter-spacing: 1px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--rosa-neon), var(--roxo-neon));
    transition: width 0.3s ease;
}

.header-nav a:hover {
    color: var(--branco-puro);
    text-shadow: var(--glow-rosa);
}

.header-nav a:hover::after {
    width: 100%;
}

.header-cta {
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--rosa-neon), var(--roxo-neon));
    border: none;
    border-radius: 30px;
    color: var(--branco-puro);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: var(--glow-rosa);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-forte);
    filter: brightness(1.2);
}

/* ===== HERO COM VÍDEO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--preto-profundo);
}

.hero-background,
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(1);
    object-fit: cover;
    z-index: 1;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(0, 0, 0, 0.65) 0%, 
        rgba(18, 18, 18, 0.55) 50%,
        rgba(180, 60, 255, 0.15) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    padding: 60px 40px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-family: var(--font-titulo-premium);
    font-size: 72px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 28px;
    text-shadow: 0 0 40px rgba(255, 45, 175, 0.9),
                 0 0 80px rgba(180, 60, 255, 0.5);
    color: var(--branco-puro);
    letter-spacing: -1px;
}

.hero p {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 45px;
    opacity: 0.85;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.3px;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BOTÕES PREMIUM ===== */
.btn {
    padding: 18px 48px;
    background: linear-gradient(135deg, var(--rosa-neon), var(--roxo-neon));
    border: none;
    border-radius: 50px;
    color: var(--branco-puro);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: var(--glow-rosa);
    position: relative;
    overflow: hidden;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: var(--glow-rosa);
    }
    50% {
        box-shadow: var(--glow-forte);
    }
}

.btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--glow-forte);
    filter: brightness(1.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--rosa-neon);
    box-shadow: none;
    animation: none;
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--rosa-neon), var(--roxo-neon));
    border-color: transparent;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== SECTION TITLE ===== */
.section-title {
    font-family: var(--font-titulo-premium);
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--rosa-neon), var(--roxo-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--rosa-neon), var(--roxo-neon));
    border-radius: 2px;
    box-shadow: var(--glow-rosa);
}

/* ===== PREVIEW SECTION (Galeria Teaser 3 Colunas) ===== */
.preview-section {
    padding: 100px 0;
    background: var(--preto-profundo);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.preview-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

.preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(15px) brightness(0.6);
    transition: all 0.5s ease;
}

.preview-card:hover .preview-image {
    filter: blur(7px) brightness(0.8);
    transform: scale(1.05);
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        transparent 50%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 30px;
    transition: all 0.4s ease;
}

.preview-lock {
    font-size: 48px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 20px var(--rosa-neon));
}

.preview-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.preview-badge {
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--rosa-neon), var(--roxo-neon));
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--glow-rosa);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.preview-card:hover .preview-badge {
    opacity: 1;
    transform: translateY(0);
}

/* ===== PLANOS PREMIUM (Cards com Neon Borders) ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 60px 0;
}

.pricing-card {
    background: linear-gradient(
        135deg,
        rgba(18, 18, 18, 0.9) 0%,
        rgba(27, 27, 27, 0.8) 100%
    );
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-grande);
    padding: 45px 35px;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius-grande);
    padding: 2px;
    background: linear-gradient(135deg, var(--rosa-neon), var(--roxo-neon));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--glow-forte);
}

.pricing-card:hover::before {
    opacity: 1;
    box-shadow: var(--glow-forte);
}

.pricing-card.featured {
    transform: scale(1.05);
    border-color: var(--rosa-neon);
}

.pricing-card.featured::before {
    opacity: 1;
    animation: neonPulse 3s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.5);
    }
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 24px;
    background: linear-gradient(135deg, var(--rosa-neon), var(--roxo-neon));
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--glow-rosa);
}

.badge-discount {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.pricing-card h3 {
    font-size: 28px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 10px;
    gap: 5px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.amount {
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--rosa-neon), var(--roxo-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
}

.price-detail {
    text-align: center;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.plan-features {
    list-style: none;
    margin-bottom: 35px;
}

.plan-features li {
    padding: 12px 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 12px;
}

.plan-features li::before {
    content: '✓';
    color: var(--rosa-neon);
    font-weight: bold;
    font-size: 18px;
}

.btn-subscribe {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--rosa-neon), var(--roxo-neon));
    border: none;
    border-radius: 50px;
    color: var(--branco-puro);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
    box-shadow: var(--glow-rosa);
    position: relative;
    overflow: hidden;
}

.btn-subscribe::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.btn-subscribe:hover::before {
    left: 100%;
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-forte);
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    padding: 100px 0;
    background: var(--cinza-carbono);
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: rgba(27, 27, 27, 0.5);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 45, 175, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: var(--rosa-neon);
    box-shadow: var(--glow-rosa);
}

.benefit-icon {
    font-size: 40px;
    filter: drop-shadow(0 0 15px var(--rosa-neon));
}

.benefit-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--branco-puro);
}

.benefit-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.8), rgba(27, 27, 27, 0.6));
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(180, 60, 255, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--roxo-neon);
    box-shadow: var(--glow-roxo);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rosa-neon), var(--roxo-neon));
}

.testimonial-stars {
    color: #FFD700;
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
}

/* ===== CTA FINAL ===== */
.cta-final {
    text-align: center;
    padding: 120px 40px;
    background: linear-gradient(
        135deg,
        rgba(180, 60, 255, 0.1) 0%,
        rgba(255, 45, 175, 0.1) 100%
    );
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(180, 60, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 45, 175, 0.2) 0%, transparent 50%);
    z-index: 0;
}

.cta-final h2 {
    font-family: var(--font-titulo-premium);
    font-size: 56px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-final p {
    font-size: 22px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

.cta-final .btn {
    position: relative;
    z-index: 1;
    font-size: 18px;
    padding: 22px 60px;
}

/* ===== HOME LOGADA ===== */
.welcome-banner {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.9), rgba(27, 27, 27, 0.8));
    border-radius: var(--border-radius);
    border: 2px solid rgba(255, 45, 175, 0.3);
    margin: 100px 0 50px;
}

.welcome-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--rosa-neon);
    box-shadow: var(--glow-rosa);
    object-fit: cover;
}

.welcome-text h2 {
    font-size: 32px;
    margin-bottom: 8px;
}

.welcome-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== QUICK MENU ===== */
.quick-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.quick-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px 20px;
    background: rgba(27, 27, 27, 0.6);
    border-radius: var(--border-radius);
    border: 1px solid rgba(180, 60, 255, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-menu-item:hover {
    transform: translateY(-5px);
    border-color: var(--roxo-neon);
    box-shadow: var(--glow-roxo);
}

.quick-menu-icon {
    font-size: 36px;
    filter: drop-shadow(0 0 10px var(--roxo-neon));
}

.quick-menu-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--branco-puro);
    text-align: center;
}

/* ===== FEED POST ===== */
.content-feed {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.feed-post {
    background: rgba(18, 18, 18, 0.8);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 45, 175, 0.2);
}

.feed-post-image,
.feed-post-video {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    display: block;
}

.feed-post-content {
    padding: 25px;
}

.feed-post-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.feed-action-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: grayscale(1);
}

.feed-action-btn:hover {
    filter: grayscale(0) drop-shadow(0 0 10px var(--rosa-neon));
    transform: scale(1.2);
}

.feed-post-caption {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

/* ===== PHOTOS GRID ===== */
.photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.photo-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.photo-item:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(255, 45, 175, 0.5);
}

.photo-item:hover img {
    transform: scale(1.1);
}

/* ===== CHAT CTA ===== */
.chat-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(180, 60, 255, 0.15), rgba(255, 45, 175, 0.15));
    border-radius: var(--border-radius-grande);
    margin: 60px 0;
    border: 2px solid rgba(255, 45, 175, 0.3);
}

.chat-cta h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.chat-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

/* ===== GLASS CARD ===== */
.glass-card {
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    padding: 40px;
    border: 1px solid rgba(255, 45, 175, 0.2);
    text-align: center;
}

.glass-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.glass-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 42px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .header-container {
        padding: 0 20px;
    }
    
    .header-nav {
        gap: 15px;
    }
    
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .preview-grid {
        grid-template-columns: 1fr;
    }
    
    .header-nav a {
        font-size: 13px;
    }
    
    .section-title {
        font-size: 28px;
    }
}
