/* ============================================
   DESIGN TOKENS & VARIABLES
   ============================================ */
:root {
    /* Colors - All Black Premium */
    --bg-primary: #000000;
    --bg-secondary: #0A0A0A;
    --bg-glass: rgba(255, 255, 255, 0.05);
    --bg-glass-hover: rgba(255, 255, 255, 0.08);
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --accent-gold: #FFD700;
    --accent-gold-hover: #FFE55C;
    
    /* Glassmorphism */
    --glass-blur: blur(20px);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    /* Typography */
    --font-heading: 'Playfair Display', 'Cinzel', serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Montserrat', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Container */
    --container-width: 1200px;
    --container-padding: 1.5rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.section-heading {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-weight: 600;
    position: relative;
    display: inline-block;
    width: 100%;
    /* Gradiente animado delicado no texto */
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 248, 220, 0.5) 25%, rgba(255, 248, 220, 0.5) 75%, rgba(255, 255, 255, 0.8) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gentleGoldShine 6s ease-in-out infinite;
    /* Fallback para navegadores que não suportam background-clip */
    color: rgba(255, 255, 255, 0.8);
}


/* Animação suave do gradiente dourado */
@keyframes gentleGoldShine {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--text-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.logo img {
    height: 2rem;
    width: auto;
    display: block;
}

.btn-nav {
    background: rgba(255, 215, 0, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--accent-gold);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
}

.btn-nav:hover {
    background: rgba(255, 215, 0, 0.25);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-color: #000;
}
.hero-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Múltiplos backgrounds: primeiro o gradiente, depois a cor sólida transparente */
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 80%), rgba(0, 0, 0, 0.6);
    z-index: 1;
    pointer-events: none;
}

.hero-video.active {
    opacity: 1 !important;
    z-index: 1 !important;
    transition: opacity 0s ease-in-out; /* Transição instantânea */
}

.hero-video.ready {
    opacity: 0 !important;
    z-index: 0 !important;
    transition: opacity 0s ease-in-out; /* Transição instantânea */
}

.hero-video-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Múltiplos backgrounds: primeiro o gradiente radial, depois a camada escura transparente */
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 80%), rgba(0, 0, 0, 0.6);
    pointer-events: none;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 1;
    position: relative;
}

.hero-headline {
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    letter-spacing: -0.03em;
    position: relative;
    display: inline-block;
    /* Gradiente animado delicado no texto */
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 248, 220, 0.5) 25%, rgba(255, 248, 220, 0.5) 75%, rgba(255, 255, 255, 0.8) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gentleGoldShine 6s ease-in-out infinite;
    /* Fallback para navegadores que não suportam background-clip */
    color: rgba(255, 255, 255, 0.8);
}

/* Gradiente animado delicado no texto */
.hero-subheadline {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 300;
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
    color: var(--text-secondary);
    letter-spacing: -0.01em;
}

.hero-cta {
    margin-top: var(--spacing-lg);
}

.btn-primary {
    background: rgba(255, 215, 0, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: var(--accent-gold);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    margin-bottom: var(--spacing-xs);
    border-radius: 14px;
}

.btn-primary:hover {
    background: rgba(255, 215, 0, 0.25);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.25);
}

.microcopy {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-top: var(--spacing-xs);
    letter-spacing: 0.02em;
}

/* ============================================
   EMOTIONAL HOOK SECTION
   ============================================ */
.emotional-hook {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-secondary);
    position: relative;
    z-index: 2;
}

.hook-content {
    max-width: 900px;
    margin: 0 auto;
}

.hook-text {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    color: var(--text-secondary);
    text-align: center;
}

.hook-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md);
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-card h4 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    font-size: 1.25rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-primary);
    position: relative;
    z-index: 2;
    overflow: visible; /* Permitir que elementos saiam dos limites durante hover */
}

/* Portfolio Grid - Estilo Álbum */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    width: 100%;
    max-width: 100%;
}

.portfolio-card {
    background: transparent;
    border: none;
    padding: 0;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    width: 100%;
    overflow: hidden;
}

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

.portfolio-card:hover .portfolio-thumbnail {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.15);
    transform: scale(1.1);
    background-position: 50% 50%;
    
}

.portfolio-card:hover .portfolio-thumbnail::after {
    opacity: 1;
}


/* Animação de rotação circular suave na borda */
@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* Thumbnail do vídeo */
.portfolio-thumbnail {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    margin-bottom: var(--spacing-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
    background-position: center;
}

/* Background do thumbnail
.portfolio-thumbnail::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: -2;
}
 */

/* Borda animada com gradiente dourado circular 
.portfolio-thumbnail::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    background: conic-gradient(from 0deg, transparent 0%, rgba(255, 215, 0, 0.5) 12%, rgba(255, 215, 0, 0.7) 15%, rgba(255, 215, 0, 0.5) 18%, transparent 30%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: rotateBorder 8s linear infinite;
    z-index: -1;
    pointer-events: none;
    
    mask: 
        linear-gradient(#000 0 0) content-box, 
        linear-gradient(#000 0 0);
    -webkit-mask: 
        linear-gradient(#000 0 0) content-box, 
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 2px;
} */

/* Overlay com ícone de play - efeito de vidro */
.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    opacity: 0.8;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    pointer-events: none;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.play-overlay svg {
    width: 40px;
    height: 40px;
    margin-left: 4px; /* Ajuste visual do ícone play */
    transition: transform 0.3s ease;
}

.portfolio-card:hover .play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 215, 0, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.portfolio-card h3 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    font-size: 1.5rem;
    margin-top: 0;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.portfolio-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* Modal de Vídeo em Tela Cheia */
/* Popup de Vídeo - Criado Dinamicamente */
.video-popup-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999 !important;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-popup-modal.active {
    display: flex;
    opacity: 1;
    pointer-events: all;
}

.video-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99999;
}

.video-popup-content {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 100000 !important;
    pointer-events: none;
}
.video-popup-content .video-popup-player {
    pointer-events: all;
}

.video-popup-close {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100001 !important;
    pointer-events: all;
}

.video-popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.video-popup-player {
    width: 100%;
    max-width: 1400px;
    max-height: calc(100vh - 4rem);
    position: relative;
    z-index: 100000 !important;
    pointer-events: all;
}

.video-popup-player video,
.video-popup-player iframe {
    width: 100%;
    height: calc(100vh - 4rem);
    max-height: calc(100vh - 4rem);
    min-height: 320px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    display: block;
    background: #000;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-secondary);
    position: relative;
    z-index: 2;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.package-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: var(--spacing-lg);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.package-card:hover::after {
    opacity: 1;
}

/* Animação de rotação lenta na borda dos cards */
@keyframes rotateBorderSlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.package-gold {
    border-color: rgba(255, 215, 0, 0.2);
}

.package-gold:hover {
    border-color: rgba(255, 215, 0, 0.4);
}

.package-diamond {
    border-color: rgba(255, 215, 0, 0.3);
    border-width: 2px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.1);
}

.package-diamond:hover {
    border-color: rgba(255, 215, 0, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
}

.diamond-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 2rem;
    background-color: var(--bg-primary);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
}

.package-title {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    text-align: center;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.package-subtitle {
    text-align: center;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

.package-features {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.package-features li {
    padding: var(--spacing-xs) 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
    line-height: 1.6;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: var(--spacing-md);
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.package-title {
    color: var(--text-primary);
}

.package-subtitle {
    color: var(--text-secondary);
}

.btn-package {
    width: 100%;
    background: rgba(255, 215, 0, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--accent-gold);
    border: 1px solid rgba(255, 215, 0, 0.25);
    padding: 0.875rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
}

.btn-package:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.2);
}

.btn-diamond {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
    font-weight: 600;
    padding: 1rem;
}

.btn-diamond:hover {
    background: rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.6);
}

/* ============================================
   SCARCITY SECTION
   ============================================ */
.scarcity {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-primary);
    position: relative;
    z-index: 2;
}

.scarcity-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.scarcity-text {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    color: var(--text-secondary);
}

.scarcity-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.warning-box {
    background: rgba(255, 215, 0, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    padding: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.warning-box p {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.6;
}

/* ============================================
   FORM SECTION
   ============================================ */
.form-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-secondary);
    position: relative;
    z-index: 2;
}

.application-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: var(--spacing-lg);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.05);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.btn-submit {
    width: 100%;
    background: rgba(255, 215, 0, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: var(--accent-gold);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 1rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 14px;
    margin-top: var(--spacing-sm);
}

.btn-submit:hover {
    background: rgba(255, 215, 0, 0.25);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.25);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: var(--spacing-lg) 0;
    background-color: var(--bg-primary);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-sm);
}

.footer-brand {
    margin-bottom: var(--spacing-xs);
}

.footer-copyright {
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.footer-tagline {
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
    margin: var(--spacing-sm) 0;
}

.social-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--accent-platinum);
    text-decoration: underline;
}

.social-link.is-hidden {
    display: none;
}

.footer-links {
    display: flex;
    gap: var(--spacing-xs);
    align-items: center;
    margin-top: var(--spacing-xs);
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-gold);
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
        --spacing-xl: 3rem;
        --spacing-lg: 2rem;
    }
    
    .nav-content {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .btn-nav {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .pricing-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .portfolio-thumbnail {
        aspect-ratio: 16 / 9;
    }
    
    .play-overlay {
        width: 70px;
        height: 70px;
    }
    
    .play-overlay svg {
        width: 35px;
        height: 35px;
    }
    
    .video-modal-content {
        padding: 1.5rem;
    }
    
    .video-modal-close {
        top: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        gap: var(--spacing-xs);
    }
    
    .footer-links {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .application-form {
        padding: var(--spacing-md);
    }
    
    .package-card {
        padding: var(--spacing-md);
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .portfolio-thumbnail {
        aspect-ratio: 16 / 9;
    }
    
    .play-overlay {
        width: 60px;
        height: 60px;
    }
    
    .play-overlay svg {
        width: 30px;
        height: 30px;
    }
    
    .portfolio-card h3 {
        font-size: 1.25rem;
    }
    
    .portfolio-card p {
        font-size: 0.9rem;
    }
    
    .video-modal-content {
        padding: 1rem;
    }
    
    .video-modal-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
    
    .video-modal-close svg {
        width: 20px;
        height: 20px;
    }
}

