/* ========================================
   AUREUM FILMS — Cinematographic Stylesheet
   Gold • Black • Cinema
   ======================================== */

:root {
    --black: #070707;
    --black-light: #0c0c0c;
    --black-card: #111111;
    --gold: #C9A227;
    --gold-light: #D4AF37;
    --gold-dim: rgba(201, 162, 39, 0.1);
    --white: #F0F0F0;
    --gray: #777777;
    --gray-dark: #2a2a2a;
    --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.3s ease;
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--black); }

/* Typography */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 300; line-height: 1.2; }
.gold { color: var(--gold); }

/* Reveal Animations */
.reveal-text {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal-text.visible { opacity: 1; transform: translateY(0); }

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

/* ========================================
   LOADING SCREEN
   ======================================== */
.loading-screen {
    position: fixed; inset: 0;
    background: var(--black);
    z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loading-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loading-content { text-align: center; }
.loading-logo {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem; font-weight: 300;
    letter-spacing: 16px; color: var(--gold);
    margin-bottom: 32px;
    animation: loadingPulse 2s ease infinite;
}
.loading-bar { width: 180px; height: 1px; background: var(--gold-dim); margin: 0 auto; overflow: hidden; }
.loading-progress { width: 0%; height: 100%; background: var(--gold); animation: loadingProgress 2s ease forwards; }
@keyframes loadingPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }
@keyframes loadingProgress { to { width: 100%; } }

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 1000; padding: 28px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(7, 7, 7, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 18px 0;
    border-bottom: 1px solid rgba(201, 162, 39, 0.06);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; justify-content: space-between; align-items: center;
}
.logo-img { height: 24px; width: auto; opacity: 0.85; transition: var(--transition-fast); }
.logo-img:hover { opacity: 1; }
.nav-menu { display: flex; list-style: none; gap: 48px; }
.nav-link {
    font-size: 0.75rem; font-weight: 400;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--white); text-decoration: none;
    position: relative; transition: var(--transition-fast);
}
.nav-link::after {
    content: ''; position: absolute;
    bottom: -6px; left: 50%;
    width: 0; height: 1px;
    background: var(--gold);
    transition: var(--transition);
    transform: translateX(-50%);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }
.nav-toggle {
    display: none; flex-direction: column;
    gap: 8px; background: none; border: none;
    cursor: pointer; padding: 5px;
}
.nav-toggle span { display: block; width: 28px; height: 1px; background: var(--white); transition: var(--transition-fast); }

/* ========================================
   HERO — BANNER IMPACTANTE
   ======================================== */
.hero {
    position: relative;
    height: 100vh; min-height: 800px;
    display: flex; align-items: center; justify-content: center;
    text-align: center; overflow: hidden;
}
.hero-banner {
    position: absolute; inset: 0; z-index: 0;
}
.hero-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 25s ease infinite alternate;
}
@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.15); }
}
.hero-banner-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(7,7,7,0.3) 0%, rgba(7,7,7,0.5) 50%, rgba(7,7,7,0.95) 100%);
}
.hero-content {
    position: relative; z-index: 2;
    max-width: 900px; padding: 0 24px;
}
.hero-tag {
    font-size: 0.75rem; font-weight: 500;
    letter-spacing: 10px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 32px;
}
.hero-title {
    font-size: clamp(4rem, 14vw, 12rem);
    font-weight: 300; letter-spacing: 24px;
    line-height: 1; margin-bottom: 8px;
    text-indent: 24px;
}
.hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300; font-style: italic;
    letter-spacing: 12px; color: var(--gold);
    margin-bottom: 32px;
}
.hero-desc {
    font-size: 1.1rem; font-weight: 300;
    color: var(--gray); line-height: 1.8;
    margin-bottom: 48px; max-width: 500px;
    margin-left: auto; margin-right: auto;
}
.hero-cta {
    display: flex; gap: 20px;
    justify-content: center; flex-wrap: wrap;
}

/* Scroll Hint */
.scroll-hint {
    position: absolute; bottom: 50px; left: 50%;
    transform: translateX(-50%); z-index: 2;
}
.scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2.5s ease infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.2; transform: scaleY(0.3); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-block; padding: 18px 44px;
    font-size: 0.75rem; font-weight: 500;
    letter-spacing: 3px; text-transform: uppercase;
    text-decoration: none; border: 1px solid;
    cursor: pointer; transition: var(--transition);
    position: relative; overflow: hidden;
}
.btn-primary {
    background: var(--gold); color: var(--black);
    border-color: var(--gold);
}
.btn-primary:hover {
    background: var(--gold-light); border-color: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(201, 162, 39, 0.3);
}
.btn-outline {
    background: transparent; color: var(--white);
    border-color: rgba(240, 240, 240, 0.25);
}
.btn-outline:hover {
    border-color: var(--gold); color: var(--gold);
    background: rgba(201, 162, 39, 0.05);
    transform: translateY(-3px);
}
.btn-large { padding: 22px 56px; font-size: 0.85rem; }
.btn-full { width: 100%; text-align: center; }

/* ========================================
   SECTIONS
   ======================================== */
section { padding: 140px 0; position: relative; }
.section-header { text-align: center; margin-bottom: 80px; }
.section-label {
    display: block; font-size: 0.7rem; font-weight: 500;
    letter-spacing: 5px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 20px;
}
.section-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 300; letter-spacing: 1px;
    margin-bottom: 16px;
}
.section-desc {
    font-size: 1rem; color: var(--gray);
    font-weight: 300; max-width: 500px;
    margin: 0 auto;
}

/* ========================================
   SOBRE
   ======================================== */
.sobre { background: var(--black-light); }
.sobre-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.sobre-text-side { max-width: 520px; }
.sobre-lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 300; font-style: italic;
    line-height: 1.6; color: var(--white);
    margin-bottom: 24px;
}
.sobre-text-side p {
    font-size: 0.95rem; font-weight: 300;
    color: var(--gray); line-height: 1.9;
    margin-bottom: 20px;
}
.sobre-stats {
    display: flex; gap: 50px;
    margin-top: 50px;
}
.stat { text-align: center; }
.stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem; font-weight: 300;
    color: var(--gold); line-height: 1;
}
.stat-label {
    display: block; font-size: 0.7rem;
    font-weight: 400; letter-spacing: 3px;
    text-transform: uppercase; color: var(--gray);
    margin-top: 10px;
}
.sobre-image-side { position: relative; }
.vertical-videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    height: 100%;
}
.vertical-video {
    position: relative;
    aspect-ratio: 9/16;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(201, 162, 39, 0.08);
    background: var(--black-card);
    transition: var(--transition-fast);
}
.vertical-video:hover {
    border-color: rgba(201, 162, 39, 0.25);
    transform: scale(1.03);
}
.vertical-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========================================
   DIRETOR
   ======================================== */
.diretor { background: var(--black); padding: 140px 0; }
.diretor-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}
.diretor-image { position: relative; }
.diretor-photo {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, rgba(201,162,39,0.08), rgba(201,162,39,0.02));
    border: 1px solid rgba(201, 162, 39, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.diretor-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transition: var(--transition);
}
.diretor-photo:hover .diretor-photo-img {
    filter: grayscale(0%);
}
.diretor-photo-placeholder {
    text-align: center;
    color: var(--gray);
}
.diretor-photo-placeholder span {
    font-size: 3rem;
    display: block;
    margin-bottom: 12px;
    opacity: 0.5;
}
.diretor-photo-placeholder p {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.diretor-text { max-width: 560px; }
.diretor-lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 24px;
}
.diretor-text p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 20px;
}
.diretor-stats {
    display: flex;
    gap: 40px;
    margin: 50px 0;
    padding: 30px 0;
    border-top: 1px solid rgba(201, 162, 39, 0.08);
    border-bottom: 1px solid rgba(201, 162, 39, 0.08);
}
.diretor-stat { text-align: center; }
.diretor-stat-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}
.diretor-stat-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 10px;
    line-height: 1.5;
}
.diretor-cta { margin-top: 40px; }

/* ========================================
   VÍDEOS — PORTFÓLIO COM PLAYERS
   ======================================== */
.videos { background: var(--black); }

.video-hero {
    margin-bottom: 40px;
}
.video-hero .video-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 39, 0.1);
}
.video-hero .video-wrapper video {
    width: 100%; height: 100%;
    object-fit: cover;
}
.video-hero .video-info {
    padding: 30px 0;
    border-bottom: 1px solid rgba(201, 162, 39, 0.08);
}
.video-hero .video-info h3 {
    font-size: 1.8rem; margin-bottom: 8px;
}
.video-hero .video-info p {
    color: var(--gray); font-size: 0.95rem;
    font-weight: 300;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.video-card {
    background: var(--black-card);
    border: 1px solid rgba(201, 162, 39, 0.06);
    transition: var(--transition);
}
.video-card:hover {
    border-color: rgba(201, 162, 39, 0.15);
    transform: translateY(-6px);
}
.video-card .video-wrapper {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.video-card .video-wrapper video {
    width: 100%; height: 100%;
    object-fit: cover;
}
.video-badge {
    position: absolute; top: 16px; left: 16px;
    background: rgba(7, 7, 7, 0.8);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    font-size: 0.65rem; font-weight: 500;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold); border: 1px solid rgba(201, 162, 39, 0.2);
}
.video-card .video-info {
    padding: 24px;
}
.video-card .video-info h3 {
    font-size: 1.3rem; margin-bottom: 8px;
}
.video-card .video-info p {
    font-size: 0.85rem; color: var(--gray);
    font-weight: 300; line-height: 1.6;
}

.videos-more {
    text-align: center; margin-top: 60px;
}

/* Video fallback message */
.video-wrapper video::-webkit-media-controls {
    background: rgba(7, 7, 7, 0.8);
}

/* ========================================
   PACOTES DE CASAMENTO
   ======================================== */
.pacotes { background: var(--black); }
.pacotes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}
.pacote-card {
    background: var(--black-card);
    border: 1px solid rgba(201, 162, 39, 0.08);
    padding: 50px 36px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}
.pacote-card:hover {
    border-color: rgba(201, 162, 39, 0.2);
    transform: translateY(-8px);
}
.pacote-destaque {
    border-color: var(--gold);
    border-width: 1px;
    background: linear-gradient(180deg, rgba(201,162,39,0.05) 0%, var(--black-card) 40%);
}
.pacote-destaque::before {
    content: 'MAIS ESCOLHIDO';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--black);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 3px;
    padding: 6px 20px;
}
.pacote-tag {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--white);
    margin-bottom: 24px;
}
.pacote-preco {
    margin-bottom: 36px;
}
.pacote-a-partir {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 8px;
}
.pacote-valor {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}
.pacote-itens {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}
.pacote-itens li {
    font-size: 0.85rem;
    color: var(--gray);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    padding-left: 24px;
    position: relative;
}
.pacote-itens li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.75rem;
}
.pacote-itens li:last-child { border-bottom: none; }
.pacotes-info {
    text-align: center;
    margin-top: 50px;
    font-size: 0.9rem;
    color: var(--gray);
}
.pacotes-info strong { color: var(--gold); font-weight: 500; }

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

/* ========================================
   SERVIÇOS
   ======================================== */
.servicos { background: var(--black-light); }
.servicos-list { max-width: 900px; margin: 0 auto; }
.servico-item {
    display: flex; align-items: flex-start;
    gap: 40px; padding: 50px 0;
    border-bottom: 1px solid rgba(201, 162, 39, 0.06);
    transition: var(--transition);
}
.servico-item:first-child { padding-top: 0; }
.servico-item:last-child { border-bottom: none; }
.servico-item:hover { padding-left: 20px; }
.servico-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; font-weight: 300;
    color: var(--gold); opacity: 0.4;
    line-height: 1; flex-shrink: 0;
    min-width: 60px;
}
.servico-content h3 {
    font-size: 1.6rem; margin-bottom: 12px;
    letter-spacing: 1px;
}
.servico-content p {
    font-size: 0.9rem; color: var(--gray);
    font-weight: 300; line-height: 1.8;
    max-width: 500px;
}

/* ========================================
   DEPOIMENTOS
   ======================================== */
.depoimentos { background: var(--black); }
.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.depoimento-card {
    background: var(--black-card);
    border: 1px solid rgba(201, 162, 39, 0.06);
    padding: 40px;
    transition: var(--transition);
}
.depoimento-card:hover {
    border-color: rgba(201, 162, 39, 0.12);
}
.depoimento-stars {
    color: var(--gold); font-size: 1rem;
    letter-spacing: 3px; margin-bottom: 20px;
}
.depoimento-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; font-style: italic;
    font-weight: 300; line-height: 1.6;
    color: var(--white); margin-bottom: 24px;
}
.depoimento-author { display: flex; flex-direction: column; gap: 4px; }
.depoimento-name { font-size: 0.9rem; font-weight: 500; color: var(--white); }
.depoimento-role { font-size: 0.8rem; color: var(--gray); }

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    position: relative;
    padding: 200px 0;
    text-align: center; overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; }
.cta-bg-img {
    position: absolute; inset: 0;
    background: url('../images/hero_banner.jpg') center/cover;
    filter: brightness(0.4);
}
.cta-bg-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, var(--black), rgba(7,7,7,0.7), var(--black));
}
.cta-content { position: relative; z-index: 2; }
.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300; margin-bottom: 16px;
}
.cta-desc {
    font-size: 1.1rem; color: var(--gray);
    margin-bottom: 40px; font-weight: 300;
}

/* ========================================
   CONTATO
   ======================================== */
.contato { background: var(--black-light); }
.contato-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 100px; align-items: start;
}
.contato-info {
    display: flex; flex-direction: column;
    gap: 36px;
}
.contato-item {
    display: flex; align-items: flex-start;
    gap: 18px;
}
.contato-icon {
    color: var(--gold); opacity: 0.6;
    flex-shrink: 0; margin-top: 2px;
}
.contato-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem; font-weight: 500;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 8px;
}
.contato-item a {
    font-size: 1rem; color: var(--white);
    text-decoration: none; transition: var(--transition-fast);
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}
.contato-item a:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}
.contato-form {
    display: flex; flex-direction: column;
    gap: 18px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 18px 22px;
    background: var(--black-card);
    border: 1px solid rgba(201, 162, 39, 0.08);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-dark); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.02);
}
.form-group select {
    cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23444' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 22px center;
}
.form-group select option { background: var(--black); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 140px; }

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(201, 162, 39, 0.04);
    padding: 80px 0 30px;
}
.footer-content {
    display: flex; justify-content: space-between;
    align-items: center; margin-bottom: 60px;
    flex-wrap: wrap; gap: 30px;
}
.footer-logo-img { height: 22px; width: auto; opacity: 0.7; margin-bottom: 8px; }
.footer-tagline {
    font-size: 0.7rem; color: var(--gray);
    letter-spacing: 3px; text-transform: uppercase;
}
.footer-links { display: flex; gap: 32px; }
.footer-links a {
    font-size: 0.75rem; color: var(--gray);
    text-decoration: none; letter-spacing: 2px;
    text-transform: uppercase; transition: var(--transition-fast);
}
.footer-links a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
    color: var(--gray); transition: var(--transition-fast);
    display: flex; align-items: center; justify-content: center;
    width: 42px; height: 42px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 50%;
}
.footer-social a:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.04);
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}
.footer-bottom p {
    font-size: 0.7rem; color: var(--gray-dark);
    letter-spacing: 1px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed; top: 0; right: -100%;
        width: 70%; max-width: 320px; height: 100vh;
        background: var(--black); flex-direction: column;
        justify-content: center; align-items: center;
        gap: 40px; transition: var(--transition);
        border-left: 1px solid rgba(201, 162, 39, 0.08);
    }
    .nav-menu.active { right: 0; }
    .hero-title { font-size: 3.5rem; letter-spacing: 12px; text-indent: 12px; }
    .hero-sub { font-size: 1.2rem; letter-spacing: 8px; }
    .hero-cta { flex-direction: column; width: 100%; }
    .btn { width: 100%; text-align: center; }
    
    section { padding: 100px 0; }
    .section-header { margin-bottom: 60px; }
    
    .sobre-grid { grid-template-columns: 1fr; gap: 50px; }
    .sobre-stats { gap: 30px; }
    .stat-number { font-size: 2.5rem; }
    .vertical-videos-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        max-height: 300px;
    }
    .vertical-video { aspect-ratio: 9/16; }
    
    .diretor-grid { grid-template-columns: 1fr; gap: 50px; }
    .diretor-stats { gap: 24px; }
    .diretor-stat-num { font-size: 2rem; }
    
    .videos-grid { grid-template-columns: 1fr; }
    .depoimentos-grid { grid-template-columns: 1fr; }
    
    .servico-item { flex-direction: column; gap: 16px; }
    
    .contato-content { grid-template-columns: 1fr; gap: 60px; }
    
    .footer-content { flex-direction: column; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.8rem; letter-spacing: 8px; text-indent: 8px; }
    .hero-sub { font-size: 1rem; letter-spacing: 6px; }
    .cta-title { font-size: 1.8rem; }
}
