
/*
Theme Name: Site Traje
Theme URI: http://sitetraje.com
Author: Desenvolvedor
Author URI: http://sitetraje.com
Description: Tema personalizado para site de trajes
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: responsive, custom-logo, custom-header
Text Domain: site-traje
*/

/* Variáveis de cores */
:root {
    --primary-color: #e76e55; /* Marrom terroso */
    --secondary-color: #5a3d2b; /* Marrom escuro */
    --accent-color: #ff9d4d; /* Laranja */
    --dark-bg: #17181e;
    --light-text: #ffffff;
    --gray-text: #8a8a8a;
    --light-bg: #f5f5f7;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), #f08e78);
    --gradient-dark: linear-gradient(135deg, #23242c, #17181e);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--dark-bg);
    overflow-x: hidden;
    /* Quebra palavras longas sem estourar margem; permite hifenização automática */
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: normal;
    hyphens: none;
    -webkit-hyphens: none;
    -ms-hyphens: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 100px 0;
    position: relative;
    /* Garantir navegação por âncoras abaixo do header fixo */
    scroll-margin-top: 100px;
}

/* Formas geométricas de fundo */
.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: clip;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    bottom: -50px;
    left: -50px;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    top: 50%;
    left: 30%;
    transform: translateY(-50%);
}

.shape-4 {
    width: 150px;
    height: 150px;
    background: var(--primary-color);
    bottom: 20%;
    right: 20%;
}

/* Pontos de luz */
.light-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: clip;
    z-index: 1;
}

.light-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.3;
    box-shadow: 0 0 15px 5px var(--primary-color);
    animation: pulse 4s infinite;
}

.light-dot:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.light-dot:nth-child(2) {
    top: 25%;
    left: 80%;
    animation-delay: 1s;
}

.light-dot:nth-child(3) {
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.light-dot:nth-child(4) {
    top: 70%;
    left: 90%;
    animation-delay: 1.5s;
}

.light-dot:nth-child(5) {
    top: 85%;
    left: 50%;
    animation-delay: 0.5s;
}

@keyframes pulse {
    0% {
        opacity: 0.1;
        transform: scale(1);
    }
    100% {
        opacity: 0.3;
        transform: scale(1.5);
    }
}

/* Header */
header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000; /* Aumentado para ficar acima de todos os overlays */
    background-color: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* Desktop: logo à esquerda, menu no meio, CTA à direita */
@media (min-width: 1025px) {
    header .container .logo { order: 0; }
    header .container nav { order: 1; }
    header .container .btn-sessao { order: 2; margin-left: 16px; }
}

.logo {
    display: flex;
    align-items: center;
    color: var(--light-text);
}

.logo img {
    height: auto;
    max-height: 60px;
    max-width: 40vw;
    width: auto;
    display: block;
    margin-right: 0;
}

.logo span {
    font-weight: 600;
    font-size: 18px;
}

nav ul {
    display: flex;
    flex-wrap: nowrap;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: var(--light-text);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    white-space: nowrap;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover:after {
    width: 100%;
}

.btn-sessao {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap !important;
    display: inline-block;
}

.btn-sessao:hover {
    background-color: #ff4d85;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 152, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background-color: var(--dark-bg);
    color: var(--light-text);
    overflow: visible;
    position: relative;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

/* Estilos para Hero com Vídeo */
.hero-video {
    position: relative;
    min-height: 95vh; /* Aumentado de 80vh para 95vh para ocupar quase toda a tela */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 180px; /* Aumentado ligeiramente para acompanhar a escala */
    padding-bottom: 120px; /* Aumentado para equilibrar o conteúdo */
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-video .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65); /* Overlay escuro para legibilidade */
    z-index: 2;
}

.hero-video .container {
    z-index: 3;
    width: 100%;
}

.hero-video .hero-content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content {
    width: 50%;
}

.pre-headline {
    display: inline-block;
    background-color: rgba(255, 107, 152, 0.1);
    padding: 10px 18px;
    border-radius: 32px;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.pre-headline i {
    margin-right: 5px;
}

h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.highlight:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(255, 107, 152, 0.3);
    z-index: -1;
}

.subheadline {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
}

.subheadline strong {
    color: var(--light-text);
}

.social-proof {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.proof-item {
    display: flex;
    align-items: center;
}

.proof-item i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 18px;
}

.cta-button {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--light-text);
    padding: 15px 30px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 107, 152, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 152, 0.4);
}

.cta-icon {
    margin-right: 10px;
}

.cta-subtitle {
    margin-top: 10px;
    font-size: 14px;
    color: var(--gray-text);
}

.cta-container {
    margin-top: 50px;
}

.hero-image {
    width: 45%;
    position: relative;
}

.hero-side {
    width: 50%;
    display: block;
    gap: 0;
    perspective: 900px;
    transform-style: preserve-3d;
}
.post-card {
    background: transparent;
    border-radius: 20px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.35);
    overflow: hidden;
    position: relative;
    transform: translateZ(0) rotateY(var(--tilt, 0deg));
    border: none;
}
.post-card:hover {
    transform: translateY(-6px) rotateY(var(--tilt, 0deg));
    box-shadow: 0 18px 38px rgba(0,0,0,0.55);
}
.post-card .card-head {
    padding: 10px 14px;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--light-text);
    opacity: 0.9;
}
.post-card .card-image {
    height: 160px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    margin: 0 12px;
    background-color: transparent;
}
.post-card .card-body {
    padding: 12px 14px 10px;
}
.post-card .card-title {
    color: var(--light-text);
    font-weight: 700;
    margin-bottom: 8px;
}
.post-card .card-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 54px;
}
.post-card .card-bars span {
    display: inline-block;
    width: 10px;
    border-radius: 4px;
    background: rgba(255,255,255,0.18);
}
.post-card .card-note {
    padding: 8px 14px 14px;
    color: var(--gray-text);
    font-size: 0.9rem;
}
.card-empty { 
    background: transparent;
    border: 2px solid #ff4fa1;
    box-shadow: 0 0 16px rgba(255,79,161,0.45);
    color: #fff;
    min-height: 320px;
}
.card-strategy { 
    background: transparent;
    border: 2px solid #32e07a;
    box-shadow: 0 0 16px rgba(50,224,122,0.45);
    color: #fff;
    min-height: 320px;
}
.card-empty .card-head { color: #ff4fa1; }
.card-strategy .card-head { color: #32e07a; }
.card-empty .card-title, .card-strategy .card-title { color: #fff; }
.card-empty .card-note, .card-strategy .card-note { color: rgba(255,255,255,0.9); }
.hero-side .post-card:nth-child(1) { --tilt: 7deg; }
.hero-side .post-card:nth-child(2) { --tilt: -7deg; }
.hero-comparison {
    display: block;
    transform: rotateY(-6deg);
    will-change: transform;
    position: relative;
}
.hero-comparison img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    border: none !important;
}
.bars-pink span:nth-child(1){ height: 18px; background: #ff4fa1; }
.bars-pink span:nth-child(2){ height: 32px; background: #ff7fbd; }
.bars-pink span:nth-child(3){ height: 44px; background: #ffb0d5; }
.bars-green span:nth-child(1){ height: 20px; background: #32e07a; }
.bars-green span:nth-child(2){ height: 34px; background: #78f0a8; }
.bars-green span:nth-child(3){ height: 50px; background: #b6f8ce; }
@media (max-width: 992px) {
    .hero-side { grid-template-columns: none; }
    .post-card { max-width: 460px; margin: 0 auto; }
    .hero-side .post-card:nth-child(1),
    .hero-side .post-card:nth-child(2) { --tilt: 0deg; }
    .hero-comparison { transform: none; }
}
.marketing-text {
    display: none;
}

.hero-photo {
    position: relative;
    width: 100%;
    max-width: 580px;
    margin-left: auto;
    border-radius: 24px;
    overflow: visible;
    box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

.hero-photo img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 24px;
    position: relative;
    z-index: 1;
}

/* Responsivo: centraliza a foto e aproxima os badges em telas pequenas */
@media (max-width: 768px) {
    .hero-photo {
        margin: 24px auto 0;
        max-width: 580px;
        border-radius: 24px;
    }
    .tag-personalizado, .tag-humano, .crescimento {
        padding: 8px 14px;
    }
    .crescimento { top: 10px; right: 10px; }
    .tag-humano { top: 10px; right: 10px; left: auto; transform: none; }
    .tag-personalizado { bottom: 10px; left: 10px; }
}

@media (max-width: 480px) {
    .hero-photo { max-width: 92vw; }
    .tag-personalizado, .tag-humano, .crescimento { padding: 6px 12px; }
}

.tag-personalizado, .tag-humano, .crescimento {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 2;
}

.tag-personalizado {
    bottom: -18px;
    left: 30px;
}

.tag-humano {
    top: 12px;
    right: -22px;
    left: auto;
    transform: none;
}

.crescimento {
    top: -18px;
    right: -18px;
}

.tag-icon {
    font-size: 18px;
}

.tag-number, .crescimento-number {
    background-color: var(--primary-color);
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
}
/* Animação suave dos badges */
.tag-personalizado, .tag-humano, .crescimento {
    will-change: transform;
    animation: gentleFloat 4s ease-in-out infinite;
}

@keyframes gentleFloat {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.02); }
    100% { transform: translateY(0) scale(1); }
}

/* Benefícios Section */
.benefits {
    background-color: var(--light-bg);
    position: relative;
    overflow: visible;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.check-icon {
    color: var(--accent-color);
    margin-right: 10px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.grid-2-cols {
    grid-template-columns: repeat(2, 1fr) !important;
}

@media (max-width: 768px) {
    .grid-2-cols {
        grid-template-columns: 1fr !important;
    }
}

.benefit-item {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon i {
    color: white;
    font-size: 24px;
}

.benefit-item h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.benefit-item p {
    color: var(--gray-text);
}

.channels { background-color: var(--light-bg); }

/* Desktop Tabs Layout */
.channel-tabs-container { display: block; margin-top: 30px; }
.channel-tabs { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 18px; margin-bottom: 26px; }
.channel-card { position: relative; border: none; cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 18px; border-radius: 16px; background-color: var(--card-bg, #f7f7f7); color: var(--secondary-color); font-weight: 600; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.channel-card i { font-size: 28px; }
.channel-card:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.08); }
.channel-card.active { box-shadow: 0 14px 28px rgba(0,0,0,0.12); }
.channel-card.active::after { content: ""; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 0; height: 0; border-left: 12px solid transparent; border-right: 12px solid transparent; border-top: 12px solid var(--card-bg, #f7f7f7); }

/* Cores específicas para as abas no Desktop quando ativas */
.channel-card[data-channel="meta"].active { background-color: #fdf1e3 !important; }
.channel-card[data-channel="google"].active { background-color: #e3f1ff !important; }
.channel-card[data-channel="linkedin"].active { background-color: #e8f5e9 !important; }
.channel-card[data-channel="pinterest"].active { background-color: #fde9ef !important; }
.channel-card[data-channel="tiktok"].active { background-color: #f3e8ff !important; }

/* Garante que a setinha acompanhe a cor da aba ativa */
.channel-card[data-channel="meta"].active::after { border-top-color: #fdf1e3; }
.channel-card[data-channel="google"].active::after { border-top-color: #e3f1ff; }
.channel-card[data-channel="linkedin"].active::after { border-top-color: #e8f5e9; }
.channel-card[data-channel="pinterest"].active::after { border-top-color: #fde9ef; }
.channel-card[data-channel="tiktok"].active::after { border-top-color: #f3e8ff; }

.channel-detail { display: grid; grid-template-columns: 1fr 1.2fr; gap: 26px; align-items: center; margin-top: 20px; }
.channel-illustration { display: flex; align-items: center; justify-content: center; background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.6)); border-radius: 20px; min-height: 220px; box-shadow: var(--box-shadow); }
.channel-illustration i { font-size: 64px; color: var(--primary-color); }
.channel-text h3 { color: var(--secondary-color); margin-bottom: 12px; }
.channel-text p { color: var(--gray-text); margin-bottom: 14px; }

/* Mobile Accordion Layout (hidden by default) */
.channel-accordion { display: none; max-width: 800px; margin: 30px auto 0; flex-direction: column; gap: 15px; }
.channel-item { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.05); transition: all 0.3s ease; }
.channel-header { padding: 20px 25px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; background-color: white; color: var(--secondary-color); font-weight: 600; transition: all 0.3s ease; }
.channel-item.active .channel-header { background-color: var(--card-bg, #f7f7f7); }
.channel-title { display: flex; align-items: center; gap: 15px; font-size: 1.1rem; }
.channel-title i { font-size: 24px; }
.channel-item.active { box-shadow: 0 10px 25px rgba(0,0,0,0.1); transform: translateY(-2px); }
.channel-item.active .toggle-icon { transform: rotate(180deg); }
.channel-content { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.channel-item.active .channel-content { max-height: 500px; }
.channel-inner { padding: 25px; border-top: 1px solid rgba(0,0,0,0.05); }
.channel-inner p { color: var(--gray-text); margin-bottom: 20px; font-size: 1rem; line-height: 1.6; }
.toggle-icon { transition: transform 0.3s ease; font-size: 18px; opacity: 0.7; }

/* Responsive Switch */
@media (max-width: 768px) {
    .channel-tabs-container { display: none; }
    .channel-accordion { display: flex; }
}

/* Como Funciona Section */
.how-it-works {
    background: var(--gradient-dark);
    color: var(--light-text);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: var(--light-text);
}

.how-it-works .highlight {
    color: var(--primary-color);
}

.process-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

/* Responsividade da grade "Como funciona" */
@media (max-width: 992px) {
    .process-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .process-cards {
        grid-template-columns: 1fr;
    }
    /* Mobile layout: número, ícone, título, texto centralizados */
    .process-card { text-align: center; align-items: center; }
    .process-card .card-number { position: static; display: inline-block; margin: 0 auto 10px; }
    .process-card .card-icon { margin: 0 auto 12px; }
    .process-card h3, .process-card p { text-align: center; }
}

.process-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.card-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    background-color: rgba(231, 110, 85, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(231, 110, 85, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 10px;
}

.card-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.process-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--light-text);
    font-weight: 600;
}

.process-card p {
    color: var(--gray-text);
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .process-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .process-cards {
        grid-template-columns: 1fr;
    }
}

/* Método PERFIL Section */
.method {
    background: var(--light-bg);
    color: #333;
    padding: 80px 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}

.vertical-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.method h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.2rem;
    color: #333;
}

.method h2 i {
    color: var(--primary-color);
    margin-right: 15px;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.6;
}

.text-center {
    text-align: center !important;
}

.method-intro strong {
    color: var(--primary-color);
    font-weight: 600;
}

.perfil-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}
@media (max-width: 992px) {
    .perfil-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .perfil-grid {
        grid-template-columns: 1fr;
    }
}

.perfil-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.perfil-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.letter-circle {
    width: 60px;
    height: 60px;
    background-color: rgba(231, 110, 85, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.letter-circle span {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.perfil-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(231, 110, 85, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.perfil-icon i {
    color: var(--primary-color);
    font-size: 18px;
}

.perfil-card h3 {
    margin-bottom: 10px;
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
}

.perfil-card p {
    color: var(--gray-text);
    font-size: 0.95rem;
    line-height: 1.5;
}

.method-cta {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    margin: 20px auto 0;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(231, 110, 85, 0.3);
}

.method-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 110, 85, 0.4);
}

@media (max-width: 992px) {
    .method-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Evitar cortes de conteúdo no mobile e remover overflow lateral */
    html, body, section { overflow-x: hidden; }
    .hero,
    .benefits,
    .how-it-works {
        overflow: visible;
    }
    .method-steps {
        grid-template-columns: 1fr;
    }
    
    .method h2 {
        font-size: 1.8rem;
    }
}

/* Vídeo Section */
.video-section {
    background-color: var(--dark-bg);
    color: var(--light-text);
    text-align: center;
}

.video-section h2 {
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.video-container {
    max-width: 800px;
    margin: 0 auto 30px;
    border-radius: 15px;
    overflow: visible;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* Vídeos responsivos: horizontal (desktop) e vertical (mobile) */
.video-horizontal,
.video-vertical {
    width: 100%;
    border-radius: 15px;
    display: block;
    background-color: rgba(255, 255, 255, 0.06);
    pointer-events: auto;
}

/* Por padrão, exibir horizontal e ocultar vertical */
.video-vertical { display: none; }

@media (max-width: 768px) {
  /* No mobile, usar o vídeo vertical */
  .video-horizontal { display: none; }
  .video-vertical {
    display: block;
    width: 100%;
    height: auto;
    min-height: 300px; /* Garante visibilidade mesmo se o vídeo demorar a carregar */
    aspect-ratio: 9/16; 
    max-height: 85vh;   
    object-fit: cover;  
  }
  .video-container { max-width: 100%; }
}

/* Overlay central com botão de play e instrução */
.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.15);
    color: #fff;
    text-align: center;
    border-radius: 15px;
    z-index: 2;
    cursor: pointer;
}

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

.video-overlay .play-button {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #ff6f61;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    line-height: 1;
    box-shadow: 0 8px 20px rgba(255, 111, 97, 0.35);
}

.video-overlay .play-label {
    font-weight: 600;
    font-size: 16px;
}

.video-cta {
    margin-bottom: 30px;
    color: var(--gray-text);
}

.video-btn {
    display: inline-block;
}

/* Depoimentos Section */
.testimonials {
    background-color: var(--light-bg);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial {
    min-width: 350px;
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--gray-text);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 50px;
    height: 50px;
    background-color: #ddd;
    border-radius: 50%;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.author-info p {
    font-size: 0.9rem;
    color: var(--gray-text);
}

/* Sessão Estratégica Section */
.free-session {
    background: var(--gradient-dark);
    color: var(--light-text);
    position: relative;
}

.session-card {
    max-width: 820px;
    margin: 0 auto 40px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    padding: 30px 35px;
}

.session-card h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
}

.session-card .session-intro {
    text-align: center;
    margin-bottom: 20px;
}

.session-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    display: grid;
    gap: 16px;
}

.session-list li {
    display: grid;
    grid-template-columns: 30px 1fr;
    align-items: start;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.06);
    padding: 14px 16px;
    border-radius: 12px;
}

.session-list .check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(255, 107, 152, 0.25);
    color: var(--primary-color);
    font-weight: 700;
}

.session-list strong {
    color: var(--light-text);
}

.session-cta {
    display: block;
    width: fit-content;
    margin: 0 auto 10px;
}

.free-session h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.session-intro {
    text-align: center;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.free-session > .container > p {
    text-align: center;
    margin-bottom: 40px;
    color: var(--gray-text);
}

.session-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.session-benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px 25px;
    border-radius: 10px;
}

.session-benefit i {
    color: var(--primary-color);
    font-size: 24px;
}

.session-tagline {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

.session-cta {
    display: block;
    width: fit-content;
    margin: 0 auto 50px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--light-text);
    font-weight: 600;
}

.required-marker { color: #ff3b3b; margin-left: 4px; }

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    font-family: 'Poppins', sans-serif;
    line-height: 1.45;
}

.form-group textarea {
    height: 120px;
    resize: none;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid var(--primary-color);
    background-color: rgba(255, 255, 255, 0.12);
}

/* Estado de erro para inputs/textarea */
.form-group input.error,
.form-group textarea.error {
    outline: 2px solid #ff3b3b;
    background-color: rgba(255, 59, 59, 0.08);
}

.error-message {
    display: none;
    color: #ff3b3b;
    font-size: 0.85rem;
    margin-top: 6px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 40px;
    background: var(--gradient-primary);
    color: var(--light-text);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 107, 152, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 152, 0.4);
}

/* Sobre Mim Section */
.about-me {
    background-color: var(--light-bg);
}

.about-me h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.about-content {
    display: flex;
    align-items: stretch;
    gap: 50px;
}

.about-image {
    flex: 1;
    display: flex;
}

.profile-image-placeholder {
    display: none;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.about-text {
    flex: 1;
}

.about-text .about-highlights {
    margin-top: 25px;
}

.about-text h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.about-text p {
    margin-bottom: 15px;
    color: var(--gray-text);
}

/* Utilitário de destaque para textos (usa cor principal e negrito) */
.accent {
    color: var(--primary-color);
    font-weight: 700;
}

/* Quadros de destaque na seção Sobre Mim */
.about-highlights {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* CTA da seção Sobre Mim: espaçamento no desktop */
.about-cta {
    margin-top: 28px;
}

.highlight-card {
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 18px 20px;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.highlight-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 0, 0, 0.18);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.highlight-card p {
    margin: 0;
    color: var(--gray-text);
}

/* Ícones e tipografia dos quadros */
.card-icon {
    font-size: 32px;
    line-height: 1;
    color: var(--primary-color);
}

.card-icon svg {
    width: 32px;
    height: 32px;
    display: inline-block;
    stroke: currentColor;
}

.card-content {
    display: flex;
    flex-direction: column;
}

.card-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
}

.card-subtitle {
    margin: 2px 0 0 0;
    font-size: 14px;
    color: var(--gray-text);
}

@media (max-width: 768px) {
    .about-highlights {
        grid-template-columns: 1fr;
        justify-items: stretch;
        align-items: stretch;
        row-gap: 16px;
    }
    /* Quadros da seção Sobre Mim: ocupar toda a largura e manter altura mínima igual */
    .highlight-card {
        width: 100%;
        min-height: 120px;
        text-align: left;
    }
    .highlight-card .card-content {
        align-items: flex-start;
        text-align: left;
    }
}
/* end mobile highlights */

/* FAQ Section */
.faq {
    background-color: var(--dark-bg);
    color: var(--light-text);
}

.faq h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: #fff;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 24px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    overflow: visible;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.6;
}

.toggle-icon {
    font-size: 1.5rem;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.faq-answer {
    padding: 12px 24px 24px;
    color: #fff;
    display: none;
    line-height: 1.7;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    display: block;
}

/* Final CTA Section */
.final-cta {
    background: var(--gradient-primary);
    color: var(--light-text);
    text-align: center;
}

.final-cta h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.final-cta p {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.final-btn {
    background: white;
    color: var(--primary-color);
    margin: 30px auto 20px;
}

.final-btn:hover {
    background: var(--light-text);
    color: var(--primary-color);
}

.final-tagline {
    font-style: italic;
    opacity: 0.8;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    height: 48px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: var(--gray-text);
    font-size: 14px;
}

.footer-logo .company-desc {
    color: var(--gray-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 6px 0 14px;
}

.footer-links, .footer-social {
    flex: 1;
    min-width: 200px;
}

.footer-links h3, .footer-social h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--gray-text);
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

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

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.social-icon i {
    font-size: 18px;
}

/* Responsividade */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.8rem;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content, .hero-image {
        width: 100%;
    }
    
    .hero-content {
        margin-bottom: 50px;
    }
    
    .social-proof {
        align-items: center;
    }
    
    .about-content {
        flex-direction: column;
    }
    .about-image {
        width: 100%;
    }
    .profile-image {
        height: 420px;
    }
    .about-text .about-highlights {
        grid-template-columns: 1fr 1fr;
    }
    /* Benefícios: centralizar os ícones nos dispositivos */
     .benefits .benefit-icon { margin: 0 auto 20px; }
     /* Header tablet: garantir proporção da logo e ajuste do CTA */
     .logo img { height: auto; max-height: 46px; max-width: 38vw; }
     .btn-sessao { font-size: 12px; padding: 8px 12px; white-space: nowrap !important; line-height: 1.2; }
 }

@media (max-width: 768px) {
      html { font-size: 16px; }
      h1 { font-size: 2.2rem; line-height: 1.2; letter-spacing: -0.01em; text-wrap: balance; }
      h2 { font-size: 1.8rem; line-height: 1.25; text-wrap: balance; }
      p, li { font-size: 1.1rem; line-height: 1.6; }
      .benefit-item h3 { font-size: 1.3rem; }
      .benefit-item p { font-size: 1.05rem; }
      .hero .pre-headline { font-size: 1rem; }
      .hero .subheadline { font-size: 1.15rem; line-height: 1.4; }
      .highlight { letter-spacing: 0; }
    /* Ampliar largura do container e centralizar conteúdo das seções no mobile */
    .container {
        width: 100%;
        padding: 0 20px;
    }
    section .container {
        text-align: center;
    }
    
    .profile-image {
        height: 360px;
    }
    
    /* h1/h2 mobile sizes definidos no início do bloco; removidos overrides antigos */
    
    .benefits-grid, .method-steps {
        grid-template-columns: 1fr;
    }
    
    .session-benefits {
        flex-direction: column;
    }

    /* Hero: alinhar tópicos (ícone + texto) corretamente no mobile */
    .hero .social-proof {
        align-items: flex-start;
        gap: 12px;
    }
    .hero .proof-item {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        gap: 8px;
    }
    .hero .proof-item i {
        color: var(--primary-color);
        font-size: 18px;
        line-height: 1;
        min-height: 20px;
        flex: 0 0 20px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .hero .proof-item span {
        display: block;
        line-height: 1.4;
    }

    .about-text .about-highlights {
        grid-template-columns: 1fr;
    }
    /* Espaçamento entre o último quadro e o CTA em dispositivos */
    .about-cta {
        margin-top: 18px;
    }
    /* Benefícios: garantir ícones centralizados também no mobile menor */
    .benefits .benefit-icon { margin: 0 auto 20px; }

      .process-card h3 { font-size: 1.3rem; }
      .process-card p { font-size: 1.05rem; }
}

@media (max-width: 480px) {
      html { font-size: 15px; }
      /* Títulos unificados e compactos */
      h1 { font-size: 2.2rem; line-height: 1.15; letter-spacing: -0.012em; text-wrap: balance; }
      h2 { font-size: 1.8rem; line-height: 1.22; text-wrap: balance; }
      p, li { font-size: 1.1rem; line-height: 1.6; margin-bottom: 10px; }
      .benefit-item h3 { font-size: 1.3rem; }
      .benefit-item p { font-size: 1.05rem; }
      .hero .pre-headline { font-size: 0.8rem; }
      .hero .subheadline { font-size: 0.95rem; line-height: 1.4; }
      header .container { gap: 6px; }
      section { padding: 60px 0; }
      .container { padding: 0 18px; width: 100%; }
      /* CTA centralizada com largura máxima */
      .cta-button { padding: 12px 25px; font-size: 14px; width: 100%; max-width: 440px; display: block; margin: 12px auto 0; }
      /* Seções não devem cortar conteúdo */
      .benefits, .how-it-works, .free-session, .about-me { overflow: visible; }
      .testimonial { min-width: 260px; width: 100%; }
      .video-placeholder { height: 280px; }
      
      /* Quadros no mobile: textos à esquerda próximos dos ícones */
      .benefit-item { text-align: center; }
      .benefit-item h3, .benefit-item p { text-align: center; }
      .benefit-icon { margin: 0 auto 20px; }
      
      .process-card { text-align: center; align-items: center; }
      .process-card h3 { font-size: 1.3rem; }
      .process-card p { font-size: 1.05rem; }
      .process-card .card-number { position: static; display: inline-block; margin: 0 auto 10px; }
      .process-card .card-icon { margin: 0 auto 12px; }
      
      .perfil-card { text-align: center; }
      .perfil-card h3, .perfil-card p { text-align: center; }
      
      .highlight-card { text-align: left; justify-content: flex-start; }
      .highlight-card .card-content { text-align: left; align-items: flex-start; }
      .highlight-card .card-title, .highlight-card .card-subtitle { text-align: left; }
    }
    /* Hero: refinamento do espaçamento dos ícones em telas muito pequenas */
    .hero .proof-item {
        align-items: center;
    }
    .hero .proof-item i {
        flex-basis: 18px;
        min-height: 18px;
        margin-right: 6px;
    }
    .hero .proof-item span { line-height: 1.4; }
    
    .contact-form {
        padding: 20px;
    }
    /* Sobre mim: uma coluna, quadros de mesma altura mínima */
    .about-highlights { grid-template-columns: 1fr; justify-items: stretch; align-items: stretch; row-gap: 16px; }
    /* Espaço entre o último quadro e o CTA em telas muito pequenas */
    .about-cta { margin-top: 18px; }
    .highlight-card { width: 100%; min-height: 120px; }
    .highlight-card .card-content { align-items: flex-start; text-align: left; }
}

/* Hero Mobile Layout Adjustment */
.hero-photo-mobile-wrapper {
    display: none !important;
}

@media (max-width: 991px) {
    .social-page .hero .container {
        flex-direction: column-reverse;
    }
    .social-page .hero-side {
        width: 100%;
        max-width: 600px;
        margin: 0 auto 20px;
        padding: 0 15px;
    }
    .social-page .hero-comparison {
        transform: none;
    }
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 0;
    }
    
    /* Centralizar textos no mobile para melhor harmonia com a imagem no meio */
    .hero-content .pre-headline, 
    .hero-content h1, 
    .hero-content .subheadline,
    .hero-content .cta-subtitle,
    .hero-content .cta-button {
        text-align: center;
    }
    .hero-content .cta-button {
        margin: 0 auto;
        display: flex;
        justify-content: center;
        width: fit-content;
    }

    .hero-content .social-proof {
        align-items: center;
    }
    
    /* Ocultar container original da imagem */
    .hero-image {
        display: none;
    }
    
    /* Exibir imagem intercalada */
    .hero-photo-mobile-wrapper {
        display: block !important;
        width: 100%;
        max-width: 480px;
        margin: 20px 0 30px;
        position: relative;
    }
    
    /* Ajustes na foto mobile */
    .hero-photo-mobile-wrapper .hero-photo {
        margin: 0 auto;
        width: 100%;
    }
}

@media (min-width: 992px) {
    .hero-photo-mobile-wrapper {
        display: none !important;
    }
    .hero-image {
        display: block;
    }
}

/* Header mobile extra adjustments */
@media (max-width: 480px) {
  /* Evitar que o header fixo cubra o conteúdo do hero */
  .hero { padding-top: 140px; }
}

/* Mobile refinements: headlines, testimonials, diagnostic cards, form */
@media (max-width: 768px) {
  /* Headline de acompanhamento (Benefícios) */
  .benefits h2 { font-size: 1.6rem !important; line-height: 1.2; hyphens: none; -webkit-hyphens: none; -ms-hyphens: none; overflow-wrap: normal; word-break: normal; }
  /* Depoimentos: empilhar verticalmente */
  .testimonials-slider { flex-direction: column; overflow-x: visible; gap: 20px; }
  .testimonial { min-width: 0; width: 100%; }
  .testimonial-content p { font-size: 0.95rem; line-height: 1.5; }
  .author-image { width: 40px; height: 40px; }
  .author-info h4 { font-size: 1rem; }
  .author-info p { font-size: 0.85rem; }
  /* Sessão Gratuita: ajustar cartões e tipografia */
  .session-card h2 { font-size: 1.6rem; }
  .session-list { gap: 12px; }
  .session-list li { grid-template-columns: 24px 1fr; padding: 12px 14px; }
  .session-list .check { width: 22px; height: 22px; }
  .session-intro, .session-list strong, .session-list p { hyphens: none; -webkit-hyphens: none; -ms-hyphens: none; overflow-wrap: normal; word-break: normal; }
  /* Formulário */
  .contact-form { padding: 24px; }
  /* Proporções de cápsula e maior conforto de toque */
  .form-group label { display: block; margin-bottom: 8px; font-size: 1.05rem; font-weight: 600; }
  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 1rem;
    padding: 16px 18px;
    border-radius: 28px;
  }
  .form-group textarea { min-height: 140px; }
  /* Botão com proporção cheia como referência */
  .submit-btn {
    width: 100%;
    max-width: none;
    margin: 12px 0 0 0;
    font-size: 16px;
    line-height: 1.35;
    padding: 16px 18px;
    border-radius: 28px;
    white-space: normal;
    overflow: visible;
  }
}

@media (max-width: 480px) {
  /* Headline de acompanhamento (Benefícios) */
  .benefits h2 { font-size: 1.6rem !important; line-height: 1.25; }
  /* Depoimentos: leitura confortável */
  .testimonials-slider { gap: 18px; }
  .testimonial { padding: 24px; }
  .testimonial-content p { font-size: 1rem; line-height: 1.65; font-style: normal; text-align: left; }
  .author-image { width: 36px; height: 36px; }
  /* Sessão Gratuita: cartões e título alinhados com h2 */
  .session-card h2, .free-session-title { font-size: 1.6rem; }
  .session-card { overflow: visible; }
  .session-list li { grid-template-columns: 22px 1fr; padding: 10px 12px; }
  .session-list strong { font-size: 1rem; }
  .session-list p { font-size: 0.95rem; line-height: 1.6; }
  /* Formulário: proporção idêntica ao exemplo, largura total */
  .contact-form { padding: 20px; border-radius: 14px; }
  .form-group label { display: block; margin-bottom: 8px; font-size: 1.1rem; font-weight: 600; }
  .form-group input,
  .form-group textarea,
  .form-group select { font-size: 1rem; padding: 16px 18px; border-radius: 28px; }
  .form-group textarea { min-height: 130px; }
  .submit-btn {
    width: 100%;
    max-width: none;
    margin: 12px 0 0 0;
    font-size: 16px;
    line-height: 1.35;
    padding: 16px 18px;
    border-radius: 28px;
    white-space: normal;
    overflow: visible;
  }
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content, .benefit-item, .step, .method-step, .testimonial, .session-benefit {
    animation: fadeIn 0.8s ease forwards;
}

.benefit-item:nth-child(2), .step:nth-child(2), .method-step:nth-child(2) {
    animation-delay: 0.2s;
}

.benefit-item:nth-child(3), .step:nth-child(3), .method-step:nth-child(3) {
    animation-delay: 0.4s;
}

.benefit-item:nth-child(4), .step:nth-child(4), .method-step:nth-child(4) {
    animation-delay: 0.6s;
}

.benefit-item:nth-child(5), .method-step:nth-child(5) {
    animation-delay: 0.8s;
}

.method-step:nth-child(6) {
    animation-delay: 1s;
}
/* Sessão Gratuita - Layout de duas colunas e título fora do card */
.free-session-title {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 8px;
}

.session-intro {
    text-align: center;
    margin-bottom: 15px;
    color: var(--gray-text);
}

/* Override para largura do card nessa seção */
.free-session .session-card {
    max-width: 1100px;
    margin: 20px auto 40px;
}

.session-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.session-info {
    padding-right: 10px;
}

/* O formulário deve ocupar a coluna direita por completo */
.free-session .contact-form {
    max-width: 100%;
    margin: 0;
    height: auto;
}

@media (max-width: 992px) {
    .session-grid {
        grid-template-columns: 1fr;
    }
    .free-session-title {
        font-size: 2.2rem;
    }
}
/* Destaque específico para o texto "30 minutos" na Sessão Gratuita */
.free-session .highlight {
    color: var(--primary-color);
}

/* Remover linha de sublinhado do pseudo-elemento apenas na Sessão Gratuita */
.free-session .highlight:after {
    content: none;
    display: none;
}
/* Botão hambúrguer */
.menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    border: 0;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
}

.menu-toggle:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Drawer / Offcanvas menu */
#site-nav {
    position: relative;
}

#site-nav.is-open {
    display: block;
}

@media (max-width: 1024px) {
    /* Layout do Header: Logo à esquerda, CTA e hambúrguer à direita */
    header .container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        padding: 0 15px;
    }

    .logo img { 
        height: auto; 
        max-height: 40px; 
        max-width: 45vw;
    }

    .btn-sessao {
        margin-left: auto; /* Empurra os elementos seguintes para a direita */
        padding: 8px 14px;
        font-size: 11px;
        border-radius: 20px;
        white-space: nowrap !important;
    }

    .menu-toggle {
        display: flex; /* Mostra o hambúrguer */
        margin-left: 0;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    /* Esconde a navegação padrão */
    nav {
        display: none !important;
    }

    /* Drawer / Menu Lateral */
    #site-nav.is-open {
        display: block !important;
        position: fixed;
        top: 0;
        right: 0;
        width: 80vw;
        max-width: 320px;
        height: 100vh;
        padding: 80px 25px 40px;
        background: #141414; /* Cor sólida para remover o efeito "fosco" */
        box-shadow: -10px 0 30px rgba(0,0,0,0.6);
        z-index: 2000;
        overflow-y: auto;
        pointer-events: auto;
        transform: translateX(0);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid rgba(255,255,255,0.08);
    }

    #site-nav {
        display: none;
        pointer-events: none;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    #site-nav.is-open ul {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    #site-nav.is-open ul li {
        margin: 0;
        width: 100%;
    }

    #site-nav.is-open ul li a {
        font-size: 16px;
        font-weight: 600;
        color: #ffffff !important; /* Cor branca para garantir visibilidade */
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    #site-nav.is-open ul li a:hover {
        color: var(--primary-color) !important;
        padding-left: 5px;
    }

    /* Backdrop */
    .menu-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.8);
        z-index: 1500;
        display: none;
    }
    
    .menu-backdrop[aria-hidden="false"] {
        display: block;
    }
}

.social-page .hero {
    position: relative;
    overflow: hidden;
}
.sm-differentials .container { position: relative; }
.sm-differentials { padding-top: 60px; }
.sm-differentials h2 { margin-bottom: 16px; }
.sm-differentials .section-subtitle { margin: 0 auto 16px; }
.sm-accordion {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 22px;
    align-items: start;
}
.sm-acc-item {
    display: contents;
}
.sm-process-flow .container { position: relative; }
.sm-flow { position: relative; }
.sm-flow-line { position: relative; height: 190px; margin: 6px 0 0; z-index: 6; pointer-events: none; }
.sm-flow-line svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.sm-path { stroke: rgba(255,255,255,0.28); stroke-width: 4; fill: none; stroke-linecap: round; stroke-dasharray: 14 10; animation: smDash 8s linear infinite; vector-effect: non-scaling-stroke; }
.sm-gear-runner { position: absolute; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--light-text); filter: drop-shadow(0 8px 16px rgba(0,0,0,0.35)); z-index: 4; pointer-events: none; }
.sm-gear-runner i { font-size: 42px; animation: smGearRotate 4.5s linear infinite; }
.sm-gear-companion { position: absolute; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--light-text); filter: drop-shadow(0 8px 16px rgba(0,0,0,0.35)); z-index: 4; pointer-events: none; }
.sm-gear-companion i { font-size: 34px; animation: smGearRotate 4.5s linear infinite reverse; }
.sm-connectors { position: absolute; inset: 0; pointer-events: none; z-index: 3; display: none; }
.sm-connector { position: absolute; width: 2px; background: rgba(255,255,255,0.35); box-shadow: 0 4px 8px rgba(0,0,0,0.2); }
.sm-connector::before { content: ""; position: absolute; top: -6px; left: 50%; transform: translateX(-50%); width: 10px; height: 10px; border-radius: 50%; background: var(--primary-color); box-shadow: 0 0 10px rgba(231,110,85,0.5); }
.sm-flow-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: -40px; position: relative; z-index: 1; }
.sm-flow-step { text-align: center; }
.step-pin { width: 64px; height: 64px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, rgba(231,110,85,0.25), rgba(231,110,85,0.08)); box-shadow: 0 8px 18px rgba(0,0,0,0.18); border: 1px solid rgba(255,255,255,0.15); margin: 0 auto 10px; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }
.pin-icon i { color: var(--light-text); font-size: 22px; }
.pin-num { position: absolute; top: -8px; right: -8px; background: var(--primary-color); color: #fff; font-size: 12px; font-weight: 700; padding: 3px 6px; border-radius: 8px; box-shadow: 0 4px 10px rgba(231,110,85,0.35); }

/* Brand Page Specific Styles */
.brand-page .hero {
    background-color: var(--dark-bg);
    color: var(--light-text);
}

.brand-page .hero-video .video-overlay {
    background: rgba(0, 0, 0, 0.75); /* Overlay um pouco mais escuro para a marca */
}

/* Garantir legibilidade em seções escuras da Brand Page */
.brand-page .sm-section {
    background-color: var(--dark-bg);
    color: var(--light-text);
}

.brand-page .sm-section h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

.brand-page .sm-section p {
    color: rgba(255, 255, 255, 0.85);
}

/* Corrigir visibilidade de textos dentro de quadros brancos */
.brand-page .benefit-item h3,
.brand-page .benefit-item p {
    color: #333 !important;
}

.brand-page .process-card h3,
.brand-page .process-card p {
    color: #fff !important;
}

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

.comparison-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-item {
    flex: 1;
}

.comparison-tag {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.comparison-tag.red {
    background: rgba(255, 59, 59, 0.1);
    color: #ff3b3b;
}

.comparison-tag.green {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
}

.comparison-arrow {
    font-size: 1.5rem;
    color: var(--gray-text);
}

.applications-box {
    margin-top: 60px;
    background: var(--gradient-dark);
    padding: 40px;
    border-radius: 20px;
    color: var(--light-text);
    text-align: center;
}

.applications-box h3 {
    margin-bottom: 25px;
}

.apps-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.apps-grid span {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.apps-grid i {
    color: var(--primary-color);
}

.mt-4 {
    margin-top: 2rem !important;
}

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

.differential-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .comparison-box {
        flex-direction: column;
        gap: 20px;
    }
    
    .comparison-arrow {
        transform: rotate(90deg);
    }
    
    .apps-grid span {
        width: 100%;
        justify-content: center;
    }
}
.step-content h3 { font-size: 1.1rem; color: var(--light-text); margin-bottom: 8px; }
.step-content p { color: var(--gray-text); font-size: 0.95rem; line-height: 1.6; }
@keyframes smDash { to { stroke-dashoffset: -240; } }
@keyframes smGearRotate { to { transform: rotate(360deg); } }
@media (max-width: 992px) {
  .sm-flow-steps { grid-template-columns: 1fr 1fr; margin-top: 10px; }
  .sm-flow-line { display: none; }
}
@media (max-width: 576px) {
  .sm-flow-steps { grid-template-columns: 1fr; margin-top: 12px; }
  .sm-gear-runner, .sm-gear-companion { display: none; }
}

/* Benefícios (Social Media) com centralização na última linha e hover reforçado */
.sm-benefits-list .benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.sm-benefits-list .benefit-item {
    flex: 1 1 320px;
    max-width: 360px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.sm-benefits-list .benefit-item:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 24px 48px rgba(0,0,0,0.12);
    border-color: rgba(231,110,85,0.18);
}
.sm-benefits-list .benefit-icon {
    transition: transform 0.25s ease, filter 0.25s ease;
}
.sm-benefits-list .benefit-item:hover .benefit-icon {
    transform: scale(1.06);
    filter: brightness(1.1);
}
@media (max-width: 992px) {
    .sm-benefits-list .benefit-item { flex: 1 1 46%; max-width: 460px; }
}
@media (max-width: 576px) {
    .sm-benefits-list .benefit-item { flex: 1 1 100%; max-width: 100%; }
}
.sm-acc-trigger {
    grid-column: 1;
    display: grid;
    grid-template-columns: 52px 1fr 22px;
    align-items: center;
    gap: 14px;
    padding: 20px 22px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 10px 18px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    color: var(--secondary-color);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    margin-bottom: 15px;
    text-align: left;
    cursor: pointer;
    box-sizing: border-box;
}
.sm-acc-trigger i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background-color: rgba(231, 110, 85, 0.1);
    color: var(--primary-color);
    font-size: 22px;
}
.sm-acc-trigger span { 
    font-size: 1.1rem;
    line-height: 1.3;
}
.sm-acc-trigger::after {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
    justify-self: end;
    color: var(--primary-color);
    font-size: 14px;
    opacity: 0.7;
    transition: transform 0.3s ease;
}
.sm-acc-trigger:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.12);
}
.sm-acc-item.active .sm-acc-trigger {
    background: white;
    box-shadow: 0 12px 22px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}
.sm-acc-item.active .sm-acc-trigger::after {
    transform: translateX(3px);
}
.sm-acc-content {
    grid-column: 2;
    grid-row: 1 / span 10; /* span safely */
    background: white;
    border-radius: 16px;
    box-shadow: var(--box-shadow);
    padding: 22px;
    display: none;
    flex-direction: column;
    gap: 16px;
    min-height: 420px;
}
.sm-acc-item.active .sm-acc-content {
    display: flex;
}
.sm-acc-image {
    border-radius: 12px;
    background-color: transparent !important;
    min-height: 320px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    order: -1;
    overflow: hidden;
}
.sm-acc-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.sm-acc-title {
    display: none !important;
}
.sm-acc-desc {
    color: var(--gray-text);
    line-height: 1.6;
}
@media (max-width: 992px) {
    .sm-accordion {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .sm-acc-item {
        display: block;
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        margin-bottom: 12px;
        width: 100%;
    }
    .sm-acc-trigger {
        margin-bottom: 0;
        border-radius: 0;
        box-shadow: none;
        border: none;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        width: 100%;
        box-sizing: border-box;
    }
    .sm-acc-trigger::after {
        content: "\f078";
    }
    .sm-acc-item.active .sm-acc-trigger::after {
        transform: rotate(180deg);
    }
    .sm-acc-content {
        padding: 15px;
        min-height: auto;
        border-radius: 0;
        box-shadow: none;
    }
    .sm-acc-image {
        min-height: 240px;
    }
}
.sm-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.sm-bg-bottom {
    bottom: 0;
    top: auto;
    height: 40%;
}
.sm-bubble {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    opacity: 0.2;
    animation: smFloat 6s ease-in-out infinite;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.35), rgba(255,255,255,0.06));
}
.sm-bubble.b1 {
    width: 140px;
    height: 140px;
    top: 10%;
    left: 8%;
    animation-duration: 7s;
}
.sm-bubble.b2 {
    width: 220px;
    height: 220px;
    top: 22%;
    right: 12%;
    animation-duration: 9s;
    animation-delay: 0.6s;
}
.sm-bubble.b3 {
    width: 100px;
    height: 100px;
    bottom: 18%;
    left: 20%;
    animation-duration: 6.5s;
    animation-delay: 0.3s;
}
.sm-bubble.b4 {
    width: 160px;
    height: 160px;
    bottom: 8%;
    left: 6%;
}
.sm-bubble.b5 {
    width: 120px;
    height: 120px;
    bottom: 12%;
    right: 10%;
    animation-delay: 0.5s;
}
.sm-orbit {
    position: absolute;
    top: 18%;
    left: 50%;
    width: 280px;
    height: 280px;
    margin-left: -140px;
    border-radius: 50%;
    border: 1px dashed rgba(255,255,255,0.18);
    animation: smOrbitRotate 20s linear infinite;
}
.sm-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 12px rgba(231,110,85,0.6);
}
.sm-dot.d1 { top: -5px; left: 50%; transform: translateX(-50%); }
.sm-dot.d2 { right: -5px; top: 50%; transform: translateY(-50%); }
.sm-dot.d3 { bottom: -5px; left: 50%; transform: translateX(-50%); }
.sm-pulse {
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,0.28);
    box-shadow: 0 0 0 0 rgba(255,255,255,0.28);
    animation: smPulse 2.6s ease-out infinite;
}
.sm-pulse.p1 { bottom: 12%; left: 34%; }
.sm-section {
    position: relative;
    overflow: hidden;
}
.sm-decor-line {
    position: relative;
    height: 4px;
    margin: 18px auto 28px;
    width: 160px;
    border-radius: 4px;
    background-image: linear-gradient(90deg, rgba(255,255,255,0.08), rgba(255,255,255,0.35), rgba(255,255,255,0.08));
    background-size: 200% 100%;
    animation: smShimmer 2.2s linear infinite;
}
.sm-timeline {
    position: relative;
    height: 6px;
    width: 100%;
    max-width: 960px;
    margin: 0 auto 24px;
    border-radius: 6px;
    background-image: linear-gradient(90deg, rgba(255,255,255,0.08) 30%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0.08) 70%);
    background-size: 200% 100%;
    animation: smShimmer 3s linear infinite;
}
@keyframes smFloat {
    0% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-16px) translateX(6px); }
    100% { transform: translateY(0) translateX(0); }
}
@keyframes smOrbitRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes smPulse {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.28); }
    70% { box-shadow: 0 0 0 18px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
@keyframes smShimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.portfolio {
    background-color: #fff;
    position: relative;
}
.portfolio h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.2rem;
    color: var(--secondary-color);
}
.grid-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #f5f5f5;
    box-shadow: var(--box-shadow);
}
.grid-item img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease, filter 0.25s ease;
}
.grid-item:hover img {
    transform: scale(1.03);
    filter: brightness(1.03);
}
@media (max-width: 1400px) {
    .grid-gallery { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 992px) {
    .grid-gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .grid-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .grid-gallery { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 10px;
    }
}
