/* ========================================================================== */
/* style.css - Coelho Filmes (VERSÃO LIMPA - SEM DUPLICAÇÕES)                */
/* Data: 20/04/2026                                                          */
/* ========================================================================== */

/* Variáveis de Cores */
:root {
    --primary-color: #e84e3c; /* Laranja da Coelho Filmes */
    --secondary-color: #2d3f50; /* Azul Marinho da Coelho Filmes */
    --light-gray: #f8f8f8;
    --medium-gray: #e0e0e0;
    --dark-gray: #333;
    --white: #ffffff;
    --text-color: #444;
    --color-primary: #e94b3c; /* Vermelho usado nos cards (ajustado para ser o mesmo do primary-color se for o caso) */
    --color-dark: #0f172a; /* Dark usado nos títulos */
}

/* Reset CSS Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden; /* Evita rolagem horizontal */
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

a:hover {
    text-decoration: underline;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Serif Display', serif;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 { font-size: 4.5rem; }
h2 { font-size: 3.2rem; }
h3 { font-size: 2.4rem; }
p { font-size: 1.1rem; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 96px 0;
}

.text-center {
    text-align: center;
}

.section-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* Botões */
.btn-primary, .btn-outline, .btn-cta {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-decoration: none;
}

.btn-primary, .btn-cta {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover, .btn-cta:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
}

/* Header */
#header {
    background-color: var(--white);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

#header.scrolled {
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
}

nav a {
    color: var(--secondary-color);
    font-weight: 500;
    margin-left: 30px;
    transition: color 0.3s ease;
}

nav a:hover, nav a.active {
    color: var(--primary-color);
    text-decoration: none;
}

.nav-cta {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    margin-left: 30px;
}

.nav-cta:hover {
    background-color: var(--secondary-color);
    text-decoration: none;
}

/* Hero Section (para index.html) */
.hero {
    background-color: var(--light-gray);
    padding-top: 160px; /* Ajuste para o header fixo */
    padding-bottom: 96px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    padding-right: 40px;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.hero-content h1 em {
    font-style: normal;
    color: var(--primary-color);
}

.hero-desc {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.stat-item .stat-number span {
    font-size: 1.5rem;
    vertical-align: super;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-top: 5px;
}

.hero-video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-caption {
    font-size: 0.9rem;
    color: #777;
    margin-top: 15px;
    text-align: center;
}

.video-caption em {
    font-style: italic;
    font-weight: 500;
    color: var(--secondary-color);
}

/* Sobre Section */
.sobre {
    background-color: var(--white);
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: flex-start;
}

.sobre-content h2 {
    margin-bottom: 20px;
}

.sobre-content p {
    margin-bottom: 1.5rem;
}

.sobre-destaque {
    background-color: var(--light-gray);
    padding: 30px;
    border-left: 5px solid var(--primary-color);
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
}

.sobre-pilares {
    padding-left: 40px;
    border-left: 1px solid var(--medium-gray);
}

/* Adicione aqui as novas regras para .pilar */
.pilar {
    margin-bottom: 30px; /* Espaçamento entre os blocos de texto */
}

.pilar:last-child {
    margin-bottom: 0; /* Remove o espaçamento do último bloco */
}

/* ... o restante do seu CSS para .valor-item, etc. */

.sobre-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: flex-start;
}

.sobre-content h2 {
    margin-bottom: 20px;
}

.sobre-content p {
    margin-bottom: 1.5rem;
}

.sobre-destaque {
    background-color: var(--light-gray);
    padding: 30px;
    border-left: 5px solid var(--primary-color);
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
}

.sobre-pilares {
    padding-left: 40px;
    border-left: 1px solid var(--medium-gray);
}

.valor-item {
    margin-bottom: 30px;
}

.valor-item:last-child {
    margin-bottom: 0;
}

.valor-item .valor-num {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.valor-item h4 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.valor-item p {
    font-size: 0.95rem;
    color: #666;
}

/* Eixos Section */
.eixos {
    background-color: var(--light-gray);
}

.eixos-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.eixos-header h2 {
    margin-bottom: 20px;
}

.eixos-header p {
    color: #666;
}

.eixos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.eixo-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eixo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.eixo-card .eixo-num {
    font-family: 'DM Serif Display', serif;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1;
}

.eixo-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.eixo-card p {
    font-size: 1rem;
    color: #666;
}

/* Filmografia Section */
.filmografia {
    background-color: var(--white);
}

.filmografia-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.filmografia-header h2 {
    margin-bottom: 20px;
}

.filmografia-header p {
    color: #666;
}

.filmografia-destaque {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.filme-card {
    background-color: var(--light-gray);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.filme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.filme-card .filme-imagem {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.filme-card .filme-imagem iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.filme-card .filme-info {
    padding: 25px;
}

.filme-card .filme-tag {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.filme-card .filme-titulo {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.filme-card .filme-role {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 15px;
}

.filme-card .filme-sinopse {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Contato Section */
.contato {
    background-color: var(--light-gray);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contato-info h2 {
    margin-bottom: 20px;
}

.contato-info p {
    margin-bottom: 30px;
    color: #666;
}

.contato-items .contato-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contato-item .contato-icon {
    background-color: var(--primary-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.contato-item .contato-icon svg {
    width: 24px;
    height: 24px;
}

.contato-item-text span {
    display: block;
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 5px;
}

.contato-item-text a, .contato-item-text p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.contato-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contato-form .form-group {
    margin-bottom: 24px;
}

.contato-form .form-row {
    display: flex;
    gap: 20px;
}

.contato-form .form-row .form-group {
    flex: 1;
}

.contato-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.contato-form input[type="text"],
.contato-form input[type="email"],
.contato-form select,
.contato-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.contato-form input:focus,
.contato-form select:focus,
.contato-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contato-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contato-form .btn-submit {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.contato-form .btn-submit:hover {
    background-color: var(--secondary-color);
}

/* Page Hero (para páginas internas) */
.page-hero {
    background-color: var(--secondary-color);
    padding-top: 160px; /* Ajuste para o header fixo */
    padding-bottom: 96px;
    text-align: center;
}

.page-hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero .page-hero-label {
    color: var(--primary-color);
    justify-content: center; /* Centraliza o label */
    margin-bottom: 15px;
}

.page-hero h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 20px;
}

.page-hero h1 em {
    font-style: normal;
    color: rgba(255, 255, 255, 0.6);
}

.page-hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Diferenciais (para páginas internas) */
.diferenciais {
    padding: 96px 0;
    background-color: var(--light-gray);
}

.diferenciais-header {
    max-width: 800px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.diferenciais-header h2 {
    margin-bottom: 20px;
}

.diferenciais-header p {
    color: #666;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Eixo Card (reutilizado para diferenciais) */
.eixo-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.eixo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.eixo-card .eixo-num {
    font-family: 'DM Serif Display', serif;
    font-size: 3rem;
    color: var(--medium-gray);
    margin-bottom: 15px;
    line-height: 1;
    transition: color 0.3s ease;
}

.eixo-card:hover .eixo-num {
    color: var(--primary-color);
}

.eixo-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.eixo-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0;
}

/* Videos Section (para páginas internas) */
.videos-section {
    padding: 96px 0;
}

.videos-section.bg-light {
    background-color: var(--light-gray);
}

.videos-section .videos-header {
    max-width: 800px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.videos-section .videos-header h2 {
    margin-bottom: 20px;
}

.videos-section .videos-header p {
    color: #666;
}

/* Sub-cabeçalho para categorias de vídeo */
.videos-subheader {
    max-width: 800px;
    margin: 60px auto 30px auto; /* Ajuste de margem para separar subseções */
    text-align: center;
}

.videos-subheader h3 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.videos-subheader p {
    font-size: 1rem;
    color: #666;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.video-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-card-thumb {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-card-thumb.vertical { /* Para vídeos verticais (shorts) */
    padding-bottom: 177.78%; /* 9:16 Aspect Ratio */
}

.video-card-thumb iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-card-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.video-card-tag {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.video-card-titulo {
    font-size: 1.25rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.video-card-role {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 15px;
}

.video-card-prod {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin-bottom: 15px;
}

.video-card-sinopse {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
}

/* CTA Section (para páginas internas) */
.cta-section {
    background-color: var(--secondary-color);
    padding: 96px 0;
    text-align: center;
}

.cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.cta-section .section-label {
    color: var(--primary-color);
    justify-content: center; /* Centraliza o label */
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

/* Content Section (para Política de Privacidade) */
.content-section {
    padding: 96px 0;
    background-color: var(--white);
}

.content-section .text-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.content-section .text-content h2 {
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.content-section .text-content p {
    margin-bottom: 20px;
    color: var(--text-color);
}

.content-section .text-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.content-section .text-content ul li {
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 40px 0;
    position: relative; /* Para o botão flutuante */
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1); /* Para logos brancos em fundo escuro */
}

.footer-center {
    flex-grow: 1;
    text-align: center;
}

.footer-copy {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-ancine {
    height: 25px;
    vertical-align: middle;
    margin-left: 5px;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-whatsapp {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-whatsapp:hover {
    color: var(--primary-color);
}

.footer-whatsapp svg {
    width: 20px;
    height: 20px;
    fill: currentColor; /* Para o SVG herdar a cor do texto */
    flex-shrink: 0;
}

/* Botão Voltar ao Topo */
.footer-top-btn {
    position: fixed;
    bottom: 30px; /* Ajuste a distância do fundo */
    right: 30px; /* Ajuste a distância da direita */
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%; /* Torna o botão redondo */
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 99; /* Garante que fique acima de outros elementos */
    opacity: 0; /* Escondido por padrão */
    visibility: hidden; /* Escondido por padrão */
}

.footer-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.footer-top-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-top-btn svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Cookie Banner LGPD */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    color: var(--white);
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    z-index: 1000;
    font-size: 0.95rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none; /* Escondido por padrão, será mostrado pelo JS */
}

#cookie-banner p {
    margin: 0;
    color: var(--white);
}

#cookie-banner a {
    color: var(--primary-color);
    text-decoration: underline;
}

#cookie-banner button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

#cookie-banner button:hover {
    background-color: #c93d2d;
}

/* ========================================================================== */
/* MENU MOBILE (overlay) — isolado para não duplicar no desktop               */
/* ========================================================================== */
/* Responsividade */
@media (max-width: 768px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    h3 { font-size: 1.8rem; }

    section {
        padding: 64px 15px; /* Ajustado para ter padding lateral */
    }

    .hero {
        padding-top: 120px;
    }

    .logo img {
        height: 35px;
    }

    .container {
        padding: 0 15px; /* Garante padding lateral para o container */
    }

    .header-inner {
        padding: 0 15px; /* Garante padding lateral para o header-inner */
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-video {
        margin-top: 40px;
    }

    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .sobre-pilares {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid var(--medium-gray);
        padding-top: 40px;
        margin-top: 40px;
    }

    .filmografia-destaque .filmes-destaque {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .contato-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contato-info, .contato-form {
        max-width: 600px;
        margin: 0 auto;
    }

    .contato-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    .contato-form .form-row .form-group {
        margin-bottom: 24px;
    }

    /* Responsividade para cards de vídeo nas páginas de eixo */
    .videos-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    /* Menu Mobile Overlay */
    .main-nav {
        display: none; /* Esconde o menu desktop */
    }

    .mobile-menu-toggle {
        display: flex; /* Mostra o botão do menu mobile */
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
        cursor: pointer;
        background: transparent;
        border: none;
        padding: 0;
        z-index: 110; /* Acima do header */
    }

    .mobile-menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--secondary-color);
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        transform: translateY(11px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }

    .mobile-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--secondary-color);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 105;
        transform: translateX(100%); /* Escondido por padrão */
        transition: transform 0.3s ease-in-out;
    }

    .mobile-nav.active {
        transform: translateX(0);
        display: flex; /* Mostra o menu */
    }

    .mobile-nav a {
        color: var(--white);
        font-size: 1.8rem;
        padding: 15px 0;
        display: none;
        text-align: center;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .mobile-nav a:hover {
        color: var(--primary-color);
    }

    .mobile-nav .nav-cta {
        margin-top: 30px;
        background-color: var(--primary-color);
        color: var(--white);
        padding: 15px 30px;
        border-radius: 8px;
        font-size: 1.2rem;
    }

    .mobile-nav .nav-cta:hover {
        background-color: var(--white);
        color: var(--secondary-color);
    }
}

@media (max-width: 640px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.6rem; }
    p { font-size: 1rem; }

    section {
        padding: 48px 15px;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-desc {
        font-size: 1.1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-item .stat-number {
        font-size: 2rem;
    }

    .stat-item .stat-label {
        font-size: 0.8rem;
    }

    .eixos-grid {
        grid-template-columns: 1fr;
    }

    .filmografia-destaque {
        grid-template-columns: 1fr;
    }

    .filme-card .filme-info {
        padding: 20px;
    }

    .filme-card .filme-titulo {
        font-size: 1.1rem;
    }

    .contato-form {
        padding: 30px;
    }

    .page-hero h1 {
        font-size: 3rem;
    }

    .page-hero-desc {
        font-size: 1rem;
    }

    .diferenciais-grid {
        grid-template-columns: 1fr;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .video-card-info {
        padding: 20px;
    }

    .video-card-titulo {
        font-size: 1.1rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-center {
        order: 3; /* Move a cópia para o final */
    }

    .footer-right {
        order: 2;
        justify-content: center;
    }

    .footer-logo {
        order: 1;
    }

    .btn-primary, .btn-outline, .btn-cta {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .logo img {
        height: 40px;
    }

    .footer-copy {
        font-size: 0.8rem;
    }

    .footer-whatsapp {
        font-size: 0.85rem;
    }

    .footer-top-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        bottom: 20px;
        right: 20px;
    }

    .cookie-banner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ========================================================================== */
/* SEÇÃO PROJETOS/NARRATIVAS - GRID DE CARDS (AJUSTADO PARA COLUNA ÚNICA)      */
/* ========================================================================== */
.projetos-grid {
    display: grid; /* Usa o sistema de grid */
    grid-template-columns: 1fr; /* <--- FORÇA UMA ÚNICA COLUNA */
    gap: 60px; /* <--- AQUI VOCÊ DEFINE O ESPAÇAMENTO VERTICAL ENTRE OS CARDS */
    margin-top: 40px; /* Espaçamento entre o título da seção e o grid */
}

/* Responsividade para o grid de projetos (ajustando o gap em telas menores) */
@media (max-width: 768px) {
    .projetos-grid {
        gap: 40px; /* Espaçamento menor em telas médias */
    }
}

@media (max-width: 640px) {
    .projetos-grid {
        gap: 30px; /* Espaçamento ainda menor em telas pequenas */
    }
}

/* =============================== */
/* MANIFESTO + MÉTODO (HOME)       */
/* =============================== */

.manifesto-section {
  background: var(--white);
}

.manifesto-header {
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}

.manifesto-subtitle {
  color: #666;
}

.manifesto-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.manifesto-list details {
  border: 1px solid var(--medium-gray);
  border-radius: 12px;
  padding: 14px 16px;
  background: #fff;
}

.manifesto-list summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--secondary-color);
  list-style: none;
}

.manifesto-list summary::-webkit-details-marker {
  display: none;
}

.manifesto-list details > p {
  margin-top: 10px;
  color: #555;
}

.metodo-section {
  background: var(--light-gray);
}

.metodo-header {
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}

.metodo-subtitle {
  color: #666;
}

.metodo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.metodo-card {
  background: var(--white);
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.metodo-card h3 {
  margin-bottom: 14px;
}

.metodo-block + .metodo-block {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--medium-gray);
}

.metodo-block h4 {
  margin-bottom: 6px;
  font-size: 1.15rem;
}

.movimentos {
  padding-left: 18px;
  margin: 0;
  display: grid;
  gap: 10px;
  color: #555;
}

.fundador {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--medium-gray);
}

@media (max-width: 768px) {
  .metodo-grid {
    grid-template-columns: 1fr;
  }

  .manifesto-header,
  .metodo-header {
    text-align: left;
  }
}

/* ===== MENU MOBILE (BASE) ===== */
.mobile-menu-toggle { display: none; background: none; border: 0; cursor: pointer; }
.mobile-menu-toggle span { display:block; width:26px; height:2px; background: var(--secondary-color); margin:6px 0; transition:.25s; }

.mobile-nav { display: none; }

/* Estado aberto */
body.menu-open .mobile-nav { display: flex; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }

  .mobile-nav{
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--secondary-color);
    padding: 110px 22px 28px;
    flex-direction: column;
    gap: 18px;
    overflow: auto;
  }

  .mobile-nav a{
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
    text-decoration: none;
  }

  .mobile-nav .nav-cta{
    display: inline-block;
    width: fit-content;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 18px;
    border-radius: 10px;
  }
}

/* ============================
   PATCH #1 — MENU MOBILE VISÍVEL
   (corrige: só aparece o botão Contato)
   Cole no FINAL do style.css
   ============================ */
@media (max-width: 768px){
  /* o overlay em si */
  #header .mobile-nav{
    display: none; /* padrão fechado */
  }

  body.menu-open #header .mobile-nav{
    display: flex;                 /* abre */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;

    position: fixed;
    inset: 0;
    padding: 110px 22px 22px;      /* topo “respira” do header */
    background: #2b3c4d;           /* seu fundo do print */
    z-index: 999;                  /* acima do conteúdo */
  }

  /* os links (o mais importante) */
  body.menu-open #header .mobile-nav a{
    display: block !important;
    width: 100%;
    max-width: 340px;

    margin: 0 !important;          /* mata margin herdada de nav a */
    padding: 10px 12px !important;

    color: #ffffff !important;     /* mata cor herdada escura */
    opacity: 1 !important;         /* mata opacity 0 */
    transform: none !important;    /* mata translate/scale */
    visibility: visible !important;

    text-align: center;
    font-weight: 600;
    text-decoration: none;
  }

  /* o botão CTA continua como botão */
  body.menu-open #header .mobile-nav a.nav-cta{
    max-width: 220px;
  }
}
/* ============================
   PATCH #2 — HEADER CENTRALIZADO (Manifesto + Método)
   Cole no FINAL do style.css
   ============================ */
#manifesto .diferenciais-header,
#metodo .diferenciais-header{
  text-align: center;
  max-width: 860px;
  margin: 0 auto 34px;
}

#manifesto .diferenciais-header p,
#metodo .diferenciais-header p{
  margin-left: auto;
  margin-right: auto;
  max-width: 70ch;
}

/* No mobile, se você preferir leitura alinhada à esquerda: */
@media (max-width: 768px){
  #manifesto .diferenciais-header,
  #metodo .diferenciais-header{
    text-align: left;
  }
}
/* ============================
   PATCH #3 — AJUSTE DO MENU DESKTOP
   (Corrige o desalinhamento do botão Contato)
   Cole no FINAL do style.css
   ============================ */
.header-inner .main-nav {
    display: flex;
    align-items: center;
    gap: 20px; /* Ajuste o espaçamento entre os itens do menu */
}

.header-inner .main-nav a {
    white-space: nowrap; /* Evita quebra de linha nos itens do menu */
}

.header-inner .main-nav .nav-cta {
    margin-left: 20px; /* Adiciona um espaçamento maior antes do botão Contato */
    /* Se o botão já tiver um padding horizontal, pode ser necessário ajustar */
    /* ou remover outras propriedades de margin/padding que estejam causando conflito */
}

/* Ajuste para telas menores, se necessário, para evitar quebra de linha excessiva */
@media (max-width: 1200px) { /* Exemplo: ajuste para telas um pouco menores que o desktop padrão */
    .header-inner .main-nav {
        gap: 15px;
    }
    .header-inner .main-nav .nav-cta {
        margin-left: 15px;
    }
}

/* Se o problema persistir, pode ser necessário inspecionar o elemento no navegador */
/* para ver quais regras CSS estão sendo aplicadas e qual está causando o conflito. */

/* ========================================================================== */
/* HEADER & NAVEGAÇÃO UNIFICADA (NOVO)                                        */
/* ========================================================================== */
#header {
    position: fixed; top: 0; left: 0; width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000; transition: all 0.3s ease;
}

.header-inner {
    display: flex; justify-content: space-between; align-items: center;
    height: 80px;
}

.logo img { height: 40px; width: auto; }

/* --- DESKTOP --- */
.main-nav {
    display: flex; align-items: center; gap: 20px;
}

.main-nav a {
    font-size: 1rem; font-weight: 600; color: var(--secondary-color);
    text-decoration: none; transition: color 0.3s ease; white-space: nowrap;
}

.main-nav a:hover, .main-nav a.active { color: var(--primary-color); }

.main-nav .nav-cta {
    background-color: var(--primary-color); color: var(--white);
    padding: 10px 20px; border-radius: 8px;
}

.main-nav .nav-cta:hover {
    background-color: var(--secondary-color); color: var(--white);
}

/* --- BOTÃO HAMBÚRGUER --- */
.mobile-menu-toggle {
    display: none; background: transparent; border: none; cursor: pointer;
    width: 30px; height: 22px; padding: 0; z-index: 1001;
    flex-direction: column; justify-content: space-between;
}

.mobile-menu-toggle span {
    display: block; width: 100%; height: 3px; border-radius: 3px;
    background-color: var(--secondary-color); transition: all 0.3s ease;
}
/* ========================================================================== */
/* SUPER PATCH - FORÇAR MENU MOBILE E CORRIGIR SOBREPOSIÇÃO                   */
/* ========================================================================== */

/* 1. Garante que o menu desktop fique alinhado e esconde o botão hambúrguer */
.main-nav {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
}
.mobile-menu-toggle {
    display: none !important;
}

@media (max-width: 1024px) {
    /* Esconde o menu de texto do desktop */
    .main-nav {
        display: none !important; 
    }

    /* Força o botão hambúrguer a aparecer e ter tamanho fixo */
    .mobile-menu-toggle {
        display: flex !important; 
        flex-direction: column !important;
        justify-content: space-between !important;
        width: 35px !important;
        height: 25px !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        z-index: 9999 !important;
        cursor: pointer !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Força a cor e o formato das 3 listras, MATANDO margens antigas */
    .mobile-menu-toggle span {
        display: block !important;
        width: 100% !important;
        height: 4px !important;
        background-color: #2b3c4d !important; /* Cor escura forçada (sem usar var) */
        border-radius: 4px !important;
        margin: 0 !important; /* ISSO RESOLVE O ESMAGAMENTO */
        padding: 0 !important;
        transition: all 0.3s ease !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Estilo do menu quando o usuário CLICA para abrir */
    body.menu-open .main-nav {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background-color: #2b3c4d !important;
        z-index: 9998 !important;
        gap: 25px !important;
    }

    /* Estilo dos links no menu aberto */
    body.menu-open .main-nav a {
        color: #ffffff !important;
        font-size: 1.5rem !important;
        text-decoration: none !important;
        font-weight: 600 !important;
        margin: 0 !important;
    }

    /* Estilo do botão Contato no menu aberto */
    body.menu-open .main-nav a.nav-cta {
        background-color: #e64b3c !important; /* Cor laranja forçada */
        padding: 12px 30px !important;
        border-radius: 8px !important;
        margin-top: 10px !important;
    }

    /* Animação do X no botão hambúrguer */
    body.menu-open .mobile-menu-toggle span:nth-child(1) {
        transform: translateY(10.5px) rotate(45deg) !important;
        background-color: #ffffff !important;
    }
    body.menu-open .mobile-menu-toggle span:nth-child(2) {
        opacity: 0 !important;
    }
    body.menu-open .mobile-menu-toggle span:nth-child(3) {
        transform: translateY(-10.5px) rotate(-45deg) !important;
        background-color: #ffffff !important;
    }

    /* Trava a tela de fundo para não rolar */
    body.menu-open { overflow: hidden !important; }
}
/* ========================================================================== */
/* CORREÇÃO PARA IMAGENS NOS CARDS DE FILME                                   */
/* ========================================================================== */
.filme-imagem img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz a imagem preencher todo o espaço sem achatar */
    border: none;
}
/* ========================================================================== */
/* CHAMADA PARA O MÉTODO (HOME)                                               */
/* ========================================================================== */
.chamada-metodo-section {
    padding: 100px 0;
    background-color: var(--white, #ffffff);
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05); /* Linha sutil para separar da seção anterior */
}

.chamada-metodo-content {
    max-width: 800px;
    margin: 0 auto;
}

.chamada-metodo-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color, #555555);
    margin-bottom: 40px;
}

.btn-metodo {
    display: inline-block;
    background-color: var(--primary-color, #e64b3c);
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 75, 60, 0.3);
}

.btn-metodo:hover {
    background-color: var(--secondary-color, #2b3c4d);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(43, 60, 77, 0.3);
    transform: translateY(-2px);
}
/* =========================================
   SEÇÃO MÉTODO DETALHADO (ESTILO MANIFESTO)
   ========================================= */
.metodo-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.metodo-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.metodo-intro h2 {
  color: var(--primary-color, #2b3c4d);
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.metodo-intro blockquote {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--secondary-color, #e64b3c);
  line-height: 1.6;
  border: none;
  padding: 0;
  margin: 0;
}

.metodo-lista {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.metodo-item {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding-bottom: 50px;
  border-bottom: 1px solid #eaeaea;
}

.metodo-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.metodo-numero {
  font-size: 4.5rem;
  font-weight: 700;
  color: #f0f0f0; /* Cinza bem claro, estilo marca d'água */
  line-height: 0.8;
  min-width: 90px;
  font-family: Georgia, serif; /* Traz um tom mais editorial/documental */
}

.metodo-conteudo h3 {
  font-size: 1.8rem;
  color: var(--primary-color, #2b3c4d);
  margin-bottom: 5px;
}

.metodo-conteudo h4 {
  font-size: 1.1rem;
  color: var(--secondary-color, #e64b3c);
  font-weight: 500;
  margin-bottom: 15px;
}

.metodo-conteudo p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.metodo-ferramentas {
  font-size: 0.95rem;
  color: #666;
  background-color: #f9f9f9;
  padding: 18px 20px;
  border-radius: 8px;
  border-left: 4px solid var(--secondary-color, #e64b3c);
}

.metodo-ferramentas strong {
  color: var(--primary-color, #2b3c4d);
}

.metodo-citacao-final {
  max-width: 900px;
  margin: 80px auto 0;
  background-color: var(--primary-color, #2b3c4d);
  color: #ffffff;
  padding: 50px 40px;
  border-radius: 12px;
  text-align: center;
}

.metodo-citacao-final blockquote {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 25px;
  border: none;
  padding: 0;
}

.metodo-citacao-final cite {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary-color, #e64b3c);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsivo para Mobile */
@media (max-width: 768px) {
  .metodo-item {
    flex-direction: column;
    gap: 15px;
  }
  .metodo-numero {
    font-size: 3.5rem;
  }
  .metodo-citacao-final {
    padding: 40px 20px;
  }
}
/* ========================================================================== */
/* AJUSTE DE TÍTULOS PARA MOBILE (FORÇADO)                                    */
/* ========================================================================== */
@media (max-width: 768px) {
    h1, 
    h2, 
    .page-title, 
    .section-title,
    .hero h1,
    .banner h1 {
        font-size: 1.8rem !important; 
    }
}