/* ============================================
   VARIÁVEIS — paleta inspirada no anexo 01
   ============================================ */
:root {
    --bg-deep: #050b1a;
    --bg-primary: #0a1530;
    --bg-secondary: #0f1e3f;
    --bg-card: rgba(30, 58, 138, 0.08);

    --blue-bright: #3b82f6;
    --blue-light: #60a5fa;
    --blue-accent: #2563eb;
    --blue-glow: #1d4ed8;
    --blue-soft: rgba(59, 130, 246, 0.15);

    --text-white: #ffffff;
    --text-soft: #cbd5e1;
    --text-muted: #94a3b8;

    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-glow: 0 8px 32px rgba(59, 130, 246, 0.35);
    --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ============================================
   UTILS
   ============================================ */
.highlight {
    background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.section-tag,
.hero-tag {
    display: inline-block;
    padding: 7px 18px;
    border-radius: 100px;
    background: var(--blue-soft);
    border: 1px solid rgba(96, 165, 250, 0.3);
    color: var(--blue-light);
    font-size: 12.5px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(5, 11, 26, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 18px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(5, 11, 26, 0.95);
    padding: 12px 0;
}

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

.logo {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo span {
    background: linear-gradient(135deg, var(--blue-bright), var(--blue-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav a {
    color: var(--text-soft);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--blue-light);
}

.nav-cta {
    background: linear-gradient(135deg, var(--blue-bright), var(--blue-accent));
    padding: 10px 22px;
    border-radius: 10px;
    color: var(--text-white) !important;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    background:
        radial-gradient(ellipse 80% 60% at 70% 30%, rgba(37, 99, 235, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse 70% 50% at 20% 80%, rgba(29, 78, 216, 0.3) 0%, transparent 60%),
        linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-primary) 100%);
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
}

.glow-1 {
    top: -10%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.45), transparent 70%);
}

.glow-2 {
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.35), transparent 70%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.8vw, 62px);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 26px;
    letter-spacing: -0.025em;
    color: var(--text-white);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-soft);
    margin-bottom: 40px;
    max-width: 560px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue-accent) 100%);
    color: var(--text-white);
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--blue-light), var(--blue-bright));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(59, 130, 246, 0.6);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary > * {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: var(--blue-light);
    transform: translateY(-2px);
}

/* Anotação manuscrita — começa abaixo de "dev" e termina no rosto */
.hero-annotation {
    position: absolute;
    top: 95px;             /* abaixo do header fixo, com folga para a mão aparecer */
    left: 280px;           /* alinhado abaixo de "Alan.dev" */
    width: 950px;
    height: 450px;
    pointer-events: none;
    z-index: 20;           /* acima dos badges/glow */
    overflow: visible;
    opacity: 0;
    animation: fade-in-annotation 1.2s ease 2.5s forwards, wobble-note 4s 3.7s ease-in-out infinite;
}

.annotation-txt {
    position: absolute;
    top: 8px;
    left: 60px;
    font-family: 'Caveat', cursive;
    font-size: 24px;
    font-weight: 700;
    color: #93c5fd;
    white-space: nowrap;
    transform: rotate(-6deg);
    transform-origin: left center;
    text-shadow: 0 2px 12px rgba(59, 130, 246, 0.6);
    z-index: 2;
}

.annotation-arrow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

@keyframes fade-in-annotation {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0);   }
}

@keyframes wobble-note {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25%       { transform: translate(-2px, -4px) rotate(0.7deg); }
    50%       { transform: translate(2px, 3px) rotate(-0.5deg); }
    75%       { transform: translate(-1px, 4px) rotate(0.4deg); }
}

@media (max-width: 1100px) {
    .hero-annotation { display: none; }
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    max-width: 560px;
    margin-left: auto;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    height: 130%;
    background:
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.7) 0%, rgba(37, 99, 235, 0.45) 30%, rgba(29, 78, 216, 0.2) 55%, transparent 75%);
    filter: blur(70px);
    z-index: 1;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.85; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

.image-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Efeito de dissolver — começa a desaparecer cedo e some por completo nas bordas */
    -webkit-mask-image: radial-gradient(
        ellipse 75% 75% at 50% 50%,
        #000 15%,
        rgba(0, 0, 0, 0.85) 35%,
        rgba(0, 0, 0, 0.5) 55%,
        rgba(0, 0, 0, 0.2) 75%,
        transparent 90%
    );
    mask-image: radial-gradient(
        ellipse 75% 75% at 50% 50%,
        #000 15%,
        rgba(0, 0, 0, 0.85) 35%,
        rgba(0, 0, 0, 0.5) 55%,
        rgba(0, 0, 0, 0.2) 75%,
        transparent 90%
    );
    filter: contrast(1.08) saturate(1.15);
}

/* ============================================
   BADGES FLUTUANTES 3D (WEB / DAVINCI / YOUTUBE)
   ============================================ */
.brand-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 18px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1.2px;
    color: #ffffff;
    z-index: 5;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    text-transform: uppercase;
    cursor: default;
    user-select: none;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    will-change: transform;
}

.brand-badge .badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
}

.brand-badge .badge-icon svg {
    width: 100%;
    height: 100%;
}

/* --- WEB (azul cyan tech) --- */
.brand-web {
    top: 12%;
    left: -8%;
    background: linear-gradient(135deg, #06b6d4 0%, #0284c7 50%, #0369a1 100%);
    box-shadow:
        0 20px 40px rgba(6, 182, 212, 0.45),
        inset 0 2px 0 rgba(255, 255, 255, 0.35),
        inset 0 -3px 6px rgba(0, 0, 0, 0.25);
    transform: rotate(-7deg);
    animation: float-web 5s ease-in-out infinite;
}

.brand-web:hover {
    animation-play-state: paused;
    transform: rotate(0deg) scale(1.08);
    box-shadow:
        0 25px 50px rgba(6, 182, 212, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

/* --- DAVINCI (escuro com acento vermelho/coral) --- */
.brand-davinci {
    top: 48%;
    right: -10%;
    background: linear-gradient(135deg, #2d1f1f 0%, #1a1a1a 100%);
    border: 1px solid rgba(239, 68, 68, 0.4);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.55),
        0 0 24px rgba(239, 68, 68, 0.25),
        inset 0 2px 0 rgba(255, 255, 255, 0.08),
        inset 0 -3px 6px rgba(0, 0, 0, 0.5);
    transform: rotate(6deg);
    animation: float-davinci 6s ease-in-out infinite;
}

.davinci-icon {
    width: 26px !important;
    height: 26px !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.brand-davinci:hover {
    animation-play-state: paused;
    transform: rotate(0deg) scale(1.08);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.7),
        0 0 32px rgba(239, 68, 68, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.12);
}

/* --- YOUTUBE (vermelho clássico) --- */
.brand-youtube {
    bottom: 10%;
    left: 5%;
    background: linear-gradient(135deg, #ff1a1a 0%, #dc2626 50%, #991b1b 100%);
    box-shadow:
        0 20px 40px rgba(220, 38, 38, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -3px 6px rgba(0, 0, 0, 0.3);
    transform: rotate(-4deg);
    animation: float-youtube 5.5s ease-in-out infinite;
}

.brand-youtube:hover {
    animation-play-state: paused;
    transform: rotate(0deg) scale(1.08);
    box-shadow:
        0 25px 50px rgba(220, 38, 38, 0.65),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

/* Animações de flutuação suave */
@keyframes float-web {
    0%, 100% { transform: rotate(-7deg) translateY(0); }
    50% { transform: rotate(-7deg) translateY(-14px); }
}

@keyframes float-davinci {
    0%, 100% { transform: rotate(6deg) translateY(0); }
    50% { transform: rotate(6deg) translateY(-12px); }
}

@keyframes float-youtube {
    0%, 100% { transform: rotate(-4deg) translateY(0); }
    50% { transform: rotate(-4deg) translateY(-16px); }
}

/* ============================================
   SOBRE
   ============================================ */
.sobre {
    padding: 140px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.sobre::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.sobre-grid {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.sobre h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 36px;
    letter-spacing: -0.02em;
}

.sobre-text p {
    color: var(--text-soft);
    font-size: 17px;
    margin-bottom: 22px;
    line-height: 1.8;
}

.sobre-text strong {
    color: var(--text-white);
    font-weight: 600;
}

.destaque-box {
    margin-top: 32px !important;
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.05));
    border-left: 3px solid var(--blue-bright);
    border-radius: 12px;
    font-size: 16px !important;
}

/* ============================================
   SERVIÇOS
   ============================================ */
.servicos {
    padding: 140px 0;
    background: var(--bg-secondary);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 70px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--text-muted);
    font-size: 18px;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.servico-card {
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.02) 100%);
    border: 1px solid rgba(96, 165, 250, 0.15);
    padding: 24px 18px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue-bright), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.servico-card:hover {
    transform: translateY(-6px);
    border-color: rgba(96, 165, 250, 0.4);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.2);
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.12) 0%, rgba(59, 130, 246, 0.04) 100%);
}

.servico-card:hover::before {
    opacity: 1;
}

.servico-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--blue-bright), var(--blue-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--text-white);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

.servico-icon svg {
    width: 22px;
    height: 22px;
}

.servico-card h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 8px;
    color: var(--text-white);
}

.servico-card p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.55;
    flex: 1;
}

.servico-card p strong {
    color: var(--text-soft);
}

/* Cards clicáveis */
.servico-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 12px;
    cursor: pointer;
}

.servico-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    background: var(--blue-soft);
    border: 1px solid rgba(96, 165, 250, 0.3);
    color: var(--blue-light);
    width: fit-content;
}

.servico-badge-red    { background: rgba(239,68,68,0.1);    border-color: rgba(239,68,68,0.3);    color: #f87171; }
.servico-badge-purple { background: rgba(168,85,247,0.1);   border-color: rgba(168,85,247,0.3);   color: #c084fc; }
.servico-badge-green  { background: rgba(16,185,129,0.1);   border-color: rgba(16,185,129,0.3);   color: #34d399; }
.servico-badge-orange { background: rgba(249,115,22,0.12);  border-color: rgba(249,115,22,0.4);   color: #fdba74; }

.servico-icon-red    { background: linear-gradient(135deg, #ef4444, #b91c1c); box-shadow: 0 8px 24px rgba(239,68,68,0.4); }
.servico-icon-purple { background: linear-gradient(135deg, #a855f7, #7c3aed); box-shadow: 0 8px 24px rgba(168,85,247,0.4); }
.servico-icon-green  { background: linear-gradient(135deg, #10b981, #059669); box-shadow: 0 8px 24px rgba(16,185,129,0.4); }
.servico-icon-orange { background: linear-gradient(135deg, #fbbf24 0%, #f97316 50%, #dc2626 100%); box-shadow: 0 8px 28px rgba(249,115,22,0.55); }

/* Card "Vídeo Impactante" — visual diferenciado pra puxar o olho */
.servico-card-impacto {
    background: linear-gradient(180deg, rgba(249,115,22,0.10) 0%, rgba(220,38,38,0.04) 100%);
    border: 1px solid rgba(249,115,22,0.35);
    box-shadow: 0 12px 36px rgba(249,115,22,0.18);
}

.servico-card-impacto::before {
    background: linear-gradient(90deg, transparent, #f97316, transparent);
    opacity: 1;
}

.servico-card-impacto:hover {
    transform: translateY(-8px);
    border-color: rgba(249,115,22,0.7);
    box-shadow: 0 22px 56px rgba(249,115,22,0.4);
    background: linear-gradient(180deg, rgba(249,115,22,0.18) 0%, rgba(220,38,38,0.08) 100%);
}

.servico-card-flame {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(249,115,22,0.45), transparent 65%);
    filter: blur(30px);
    pointer-events: none;
    animation: flame-pulse 2.8s ease-in-out infinite;
    z-index: 0;
}

.servico-card-impacto > *:not(.servico-card-flame) {
    position: relative;
    z-index: 1;
}

@keyframes flame-pulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50%      { opacity: 1;   transform: scale(1.15); }
}

.servico-ver-orange {
    color: #fdba74 !important;
}

.servico-ver {
    display: inline-block;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--blue-light);
    transition: gap 0.2s ease;
}

.servico-link:hover .servico-ver {
    color: var(--blue-bright);
    text-decoration: underline;
}

/* Responsivo dos 5 cards: 5 → 3 → 2 → 1 */
@media (max-width: 1180px) {
    .servicos-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
    .servicos-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .servico-card { padding: 28px 22px; }
    .servico-card h3 { font-size: 18px; }
    .servico-card p { font-size: 14px; }
}
@media (max-width: 480px) {
    .servicos-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio {
    padding: 140px 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.portfolio-placeholder {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(37, 99, 235, 0.02));
    border: 2px dashed rgba(96, 165, 250, 0.25);
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.portfolio-placeholder:hover {
    border-color: rgba(96, 165, 250, 0.5);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(37, 99, 235, 0.04));
}

.placeholder-em-breve {
    color: var(--text-muted);
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

/* Card de destaque */
.portfolio-destaque {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.04));
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 20px;
    padding: 48px 52px;
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.portfolio-destaque::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue-bright), var(--blue-light), transparent);
}

.destaque-tag {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 100px;
    background: var(--blue-soft);
    border: 1px solid rgba(96, 165, 250, 0.35);
    color: var(--blue-light);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.destaque-titulo {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 14px;
    line-height: 1.2;
}

.destaque-desc {
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 36px;
}

/* Setas animadas */
.destaque-arrow-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-bottom: 28px;
}

.destaque-arrow {
    display: block;
    font-size: 22px;
    color: var(--blue-bright);
    opacity: 0;
    animation: arrow-cascade 1.6s ease-in-out infinite;
    line-height: 1;
    text-shadow: 0 0 12px rgba(59, 130, 246, 0.7);
}

.destaque-arrow:nth-child(1) { animation-delay: 0s; }
.destaque-arrow:nth-child(2) { animation-delay: 0.2s; }
.destaque-arrow:nth-child(3) { animation-delay: 0.4s; }

@keyframes arrow-cascade {
    0%   { opacity: 0; transform: translateY(-6px); }
    40%  { opacity: 1; transform: translateY(0); }
    70%  { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(6px); }
}

/* Link CTA principal */
.destaque-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue-accent) 100%);
    color: var(--text-white);
    border-radius: 14px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 8px 28px rgba(59, 130, 246, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.destaque-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--blue-light), var(--blue-bright));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.destaque-link:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 16px 40px rgba(59, 130, 246, 0.65),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.destaque-link:hover::before { opacity: 1; }

.destaque-link-text,
.destaque-link svg {
    position: relative;
    z-index: 1;
}

.destaque-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.destaque-link:hover svg {
    transform: translate(3px, -3px);
}

.portfolio-cta-frase {
    margin-top: 48px;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-soft);
    line-height: 1.6;
    text-align: center;
}

.frase-destaque {
    background: linear-gradient(135deg, var(--blue-bright), var(--blue-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.frase-bold {
    display: inline-block;
    margin-top: 6px;
    color: var(--text-white);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

@media (max-width: 560px) {
    .portfolio-destaque {
        padding: 32px 24px;
    }
    .destaque-titulo { font-size: 22px; }
    .destaque-link { font-size: 15px; padding: 16px 24px; }
    .portfolio-cta-frase { font-size: 18px; }
    .frase-bold { font-size: 20px; }
}

/* ============================================
   PORTFOLIO — grid de 2 projetos
   ============================================ */
.portfolio-projetos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.portfolio-projetos-grid .portfolio-destaque {
    max-width: none;
    margin: 0;
    padding: 36px 32px;
}

/* Tag variante teal */
.destaque-tag-teal {
    background: rgba(20, 184, 166, 0.12);
    border: 1px solid rgba(20, 184, 166, 0.4);
    color: #2dd4bf;
}

/* Link-wrapper que envolve a prévia do browser */
.site-preview-link {
    display: block;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(96, 165, 250, 0.25);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    margin-top: 4px;
    margin-bottom: 28px;
}

.site-preview-link:hover {
    border-color: rgba(96, 165, 250, 0.6);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.28);
    transform: translateY(-4px);
}

/* Chrome do browser */
.browser-chrome {
    overflow: hidden;
    background: #0f1e3f;
}

.browser-dots-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 13px;
    background: #1a2a4a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.br-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.br-dot-red    { background: #ff5f57; }
.br-dot-yellow { background: #febc2e; }
.br-dot-green  { background: #28c840; }

.br-url {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    padding: 3px 10px;
    font-size: 11px;
    color: var(--text-muted);
    font-family: var(--font-body);
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0 4px;
}

.br-ext-icon {
    width: 13px;
    height: 13px;
    color: var(--text-muted);
    flex-shrink: 0;
    opacity: 0.5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.br-ext-icon svg { width: 13px; height: 13px; }

/* Quadrado da prévia — padding-bottom trick (funciona em todos os browsers) */
.site-preview-square {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    overflow: hidden;
    position: relative;
    background: #0c1830;
}

/* Placeholder visível se iframe for bloqueado */
.preview-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    z-index: 1;
}

.preview-glow-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 38%, rgba(59, 130, 246, 0.28), transparent 62%);
    pointer-events: none;
}

.preview-site-name {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--blue-light);
    position: relative;
    z-index: 1;
}

.preview-visit-hint {
    font-size: 12px;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* iframe escalado para preencher o quadrado responsivamente */
.site-preview-square iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 300%;
    height: 300%;
    -webkit-transform: scale(0.3333);
    transform: scale(0.3333);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    border: none;
    pointer-events: none;
    z-index: 2;
}

/* Overlay sutil no hover */
.site-preview-link:hover .site-preview-square::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(59, 130, 246, 0.1);
    z-index: 3;
    pointer-events: none;
}

/* Botão teal para o card Next Destino */
.destaque-link-teal {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    box-shadow: 0 8px 28px rgba(13, 148, 136, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.destaque-link-teal::before {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
}

.destaque-link-teal:hover {
    box-shadow: 0 16px 40px rgba(13, 148, 136, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

@media (max-width: 780px) {
    .portfolio-projetos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .portfolio-projetos-grid .portfolio-destaque {
        padding: 28px 22px;
    }
}

/* ============================================
   VÍDEOS
   ============================================ */
.videos-section {
    padding: 140px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-deep) 100%);
    position: relative;
    overflow: hidden;
}

.videos-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(37, 99, 235, 0.12), transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.videos-section .section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.8vw, 36px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.videos-section .section-header p {
    font-size: 15px;
}

.videos-section .section-header {
    margin-bottom: 44px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    max-width: 820px;
    margin: 0 auto;
}

/* Área do vídeo com badges laterais */
.video-area {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

/* Badges laterais — mesmo estilo da página 01 */
.vid-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 12px;
    border-radius: 18px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
    flex-shrink: 0;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.vid-badge .badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.vid-badge .badge-icon svg {
    width: 100%;
    height: 100%;
}

/* TikTok — esquerda, preto com borda */
.vid-badge-tiktok {
    background: linear-gradient(145deg, #1a1a2e, #0d0d1a);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 16px 36px rgba(0, 0, 0, 0.55),
        inset 0 2px 0 rgba(255, 255, 255, 0.1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.4);
    animation: float-tiktok 5s ease-in-out infinite;
}

.vid-badge-tiktok:hover {
    animation-play-state: paused;
    transform: scale(1.08) rotate(0deg);
}

/* YouTube — direita, vermelho */
.vid-badge-youtube {
    background: linear-gradient(135deg, #ff1a1a 0%, #dc2626 50%, #991b1b 100%);
    box-shadow:
        0 16px 36px rgba(220, 38, 38, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3);
    animation: float-yttop 5.5s ease-in-out infinite;
}

.vid-badge-youtube:hover {
    animation-play-state: paused;
    transform: scale(1.08) rotate(0deg);
    box-shadow: 0 22px 44px rgba(220, 38, 38, 0.65);
}

.vid-badge-left  { transform: rotate(-7deg); margin-right: 10px; }
.vid-badge-right { transform: rotate(7deg);  margin-left: 10px; }

@keyframes float-tiktok {
    0%, 100% { transform: rotate(-7deg) translateY(0); }
    50%       { transform: rotate(-7deg) translateY(-12px); }
}

@keyframes float-yttop {
    0%, 100% { transform: rotate(7deg) translateY(0); }
    50%       { transform: rotate(7deg) translateY(-14px); }
}

/* Frame estilo celular (formato vertical Shorts/TikTok) */
.video-phone-frame {
    position: relative;
    background: linear-gradient(145deg, #1e2d4a, #111827);
    border-radius: 36px;
    padding: 14px 10px 10px;
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(96, 165, 250, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    aspect-ratio: 9 / 16;
}

.phone-notch {
    width: 80px;
    height: 8px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    margin: 0 auto 10px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: calc(100% - 22px);
    border-radius: 26px;
    overflow: hidden;
    background: #000;
    cursor: pointer;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Botão Play/Pause centralizado */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.85);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 28px rgba(59, 130, 246, 0.6);
    transition: all 0.3s ease;
    z-index: 3;
}

.video-play-btn:hover {
    background: var(--blue-bright);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 36px rgba(59, 130, 246, 0.8);
}

.video-play-btn svg {
    width: 26px;
    height: 26px;
}

.video-play-btn.playing {
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
}

.video-wrapper:hover .video-play-btn.playing {
    opacity: 1;
}

/* Botão de som */
.video-mute-btn {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    backdrop-filter: blur(6px);
    transition: all 0.25s ease;
    z-index: 4;
}

.video-mute-btn:hover {
    background: rgba(59, 130, 246, 0.75);
    border-color: var(--blue-light);
    transform: scale(1.1);
}

.video-mute-btn svg {
    width: 16px;
    height: 16px;
}

.video-mute-btn.sound-on {
    background: rgba(59, 130, 246, 0.6);
    border-color: var(--blue-bright);
}

/* Info abaixo do vídeo */
.video-info {
    margin-top: 20px;
    text-align: center;
}

.video-titulo {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

/* Imagem de comentários abaixo do vídeo */
.comentario-img {
    width: 100%;
    max-width: 220px;
    margin: 12px auto 0;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(96, 165, 250, 0.15);
}

@media (max-width: 720px) {
    .videos-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
    }
}

/* ============================================
   VOZES
   ============================================ */
.vozes-section {
    padding: 140px 0;
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.vozes-section::before {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 400px;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.1), transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.vozes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.voz-card {
    background: linear-gradient(145deg, rgba(30, 58, 138, 0.12), rgba(15, 30, 63, 0.08));
    border: 1px solid rgba(96, 165, 250, 0.18);
    border-radius: 20px;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.voz-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue-bright), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.voz-card:hover {
    transform: translateY(-5px);
    border-color: rgba(96, 165, 250, 0.4);
    box-shadow: 0 20px 48px rgba(37, 99, 235, 0.18);
}

.voz-card:hover::before { opacity: 1; }

/* Ícone do microfone */
.voz-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--blue-bright), var(--blue-accent));
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
    flex-shrink: 0;
}
.voz-icon svg { width: 26px; height: 26px; }

.voz-icon-fem  { background: linear-gradient(135deg, #a855f7, #7c3aed); box-shadow: 0 8px 20px rgba(168, 85, 247, 0.4); }
.voz-icon-inf  { background: linear-gradient(135deg, #10b981, #059669); box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4); }
.voz-icon-conv { background: linear-gradient(135deg, #f59e0b, #d97706); box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4); }

.voz-info h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 6px;
}

.voz-info p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
}

/* Player de áudio customizado */
.voz-player {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50px;
    padding: 8px 16px 8px 8px;
}

.play-audio-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-bright), var(--blue-accent));
    border: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.5);
    transition: all 0.25s ease;
}

.play-audio-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.7);
}

.play-audio-btn.playing {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.5);
}

.play-audio-btn svg { width: 16px; height: 16px; }

/* Barra de progresso */
.audio-bar-wrap {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.audio-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--blue-bright), var(--blue-light));
    border-radius: 4px;
    transition: width 0.3s linear;
}

/* Ondas animadas (visíveis só enquanto toca) */
.audio-waves {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.audio-waves span {
    display: block;
    width: 3px;
    border-radius: 3px;
    background: var(--blue-light);
    height: 4px;
    animation: wave-bar 1s ease-in-out infinite;
}

.audio-waves span:nth-child(1)  { animation-delay: 0s;    animation-duration: 0.9s; }
.audio-waves span:nth-child(2)  { animation-delay: 0.1s;  animation-duration: 1.1s; }
.audio-waves span:nth-child(3)  { animation-delay: 0.2s;  animation-duration: 0.8s; }
.audio-waves span:nth-child(4)  { animation-delay: 0.05s; animation-duration: 1.2s; }
.audio-waves span:nth-child(5)  { animation-delay: 0.15s; animation-duration: 0.95s; }
.audio-waves span:nth-child(6)  { animation-delay: 0.25s; animation-duration: 0.85s; }
.audio-waves span:nth-child(7)  { animation-delay: 0.08s; animation-duration: 1.05s; }
.audio-waves span:nth-child(8)  { animation-delay: 0.18s; animation-duration: 0.9s; }
.audio-waves span:nth-child(9)  { animation-delay: 0.12s; animation-duration: 1.15s; }
.audio-waves span:nth-child(10) { animation-delay: 0.22s; animation-duration: 0.88s; }

@keyframes wave-bar {
    0%, 100% { height: 4px; }
    50%       { height: 18px; }
}

.voz-player.playing .audio-waves { opacity: 1; }
.voz-player.playing .audio-progress { display: none; }

.audio-dur {
    font-size: 12px;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
    min-width: 32px;
    text-align: right;
}

@media (max-width: 720px) {
    .vozes-grid { grid-template-columns: 1fr; max-width: 480px; }
}

/* ============================================
   TRATAMENTO DE IMAGENS
   ============================================ */
.imagens-section {
    padding: 140px 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.imagens-section::before {
    content: '';
    position: absolute;
    top: 20%; left: 50%;
    transform: translateX(-50%);
    width: 900px; height: 500px;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.08), transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

/* Layout comparativo */
.comparativo-wrap {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

/* Lados esquerdo e direito */
.comparativo-lado {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

/* Label de qualidade */
.lado-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 100px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
}

.lado-label svg { width: 18px; height: 18px; flex-shrink: 0; }

.label-ruim {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #f87171;
}

.label-otimo {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #34d399;
}

/* Frame das imagens */
.img-frame {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-card);
}

.img-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Filtro desfocado na ruim */
.frame-ruim img {
    filter: blur(2px) contrast(0.75) saturate(0.5) brightness(0.85);
}

.img-overlay-ruim {
    position: absolute;
    inset: 0;
    background: rgba(220, 38, 38, 0.08);
    border: 2px solid rgba(239, 68, 68, 0.4);
    border-radius: 18px;
}

/* Brilho e borda verde na ótima */
.frame-otimo {
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.5),
        0 0 0 2px rgba(16, 185, 129, 0.4),
        0 0 40px rgba(16, 185, 129, 0.15);
}

.img-overlay-otimo {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(16, 185, 129, 0.05));
    border-radius: 18px;
}

/* Marca d'água */
.watermark-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 1fr);
    align-items: center;
    justify-items: center;
    pointer-events: none;
    z-index: 3;
    border-radius: 18px;
    overflow: hidden;
}

.wm {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.28);
    transform: rotate(-35deg);
    letter-spacing: -0.5px;
    user-select: none;
    white-space: nowrap;
}

.wm em {
    font-style: normal;
    color: rgba(96, 165, 250, 0.35);
}

/* Tags abaixo das imagens */
.lado-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.lado-tags span {
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #f87171;
}

.lado-tags-otimo span {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #34d399;
}

.tag-destaque-verde {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.1)) !important;
    border: 1px solid rgba(16, 185, 129, 0.5) !important;
    color: #6ee7b7 !important;
    font-size: 13px !important;
    padding: 7px 16px !important;
    box-shadow: 0 0 14px rgba(16, 185, 129, 0.2);
    width: 100%;
    text-align: center;
}

/* Centro — processo de transformação */
.comparativo-centro {
    display: flex;
    align-items: center;
    justify-content: center;
}

.processo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 160px;
}

.processo-icone {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-bright), var(--blue-accent));
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    box-shadow: 0 8px 28px rgba(59, 130, 246, 0.55);
    animation: pulse-arrow 2s ease-in-out infinite;
    flex-shrink: 0;
}

.processo-icone svg { width: 28px; height: 28px; }

@keyframes pulse-arrow {
    0%, 100% { transform: scale(1);    box-shadow: 0 8px 28px rgba(59, 130, 246, 0.55); }
    50%       { transform: scale(1.1); box-shadow: 0 12px 36px rgba(59, 130, 246, 0.8); }
}

.processo-etapas {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.etapa {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.etapa-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--blue-bright);
    flex-shrink: 0;
    box-shadow: 0 0 6px rgba(59, 130, 246, 0.6);
    animation: dot-blink 2s ease-in-out infinite;
}

.etapa:nth-child(2) .etapa-dot { animation-delay: 0.3s; background: #a855f7; box-shadow: 0 0 6px rgba(168, 85, 247, 0.6); }
.etapa:nth-child(3) .etapa-dot { animation-delay: 0.6s; background: #10b981; box-shadow: 0 0 6px rgba(16, 185, 129, 0.6); }
.etapa:nth-child(4) .etapa-dot { animation-delay: 0.9s; background: #f59e0b; box-shadow: 0 0 6px rgba(245, 158, 11, 0.6); }

@keyframes dot-blink {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.4); }
}

@media (max-width: 860px) {
    .comparativo-wrap {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
    .comparativo-centro {
        transform: rotate(90deg);
        margin: 8px 0;
    }
    .processo-etapas { display: none; }
}

/* ============================================
   CTA VÍDEO IMPACTANTE — última seção
   ============================================ */
.cta-video-section {
    position: relative;
    padding: 140px 0 160px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-deep) 100%);
    overflow: hidden;
}

.cta-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.cta-glow-1 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.28), transparent 70%);
    top: -120px;
    left: -120px;
}

.cta-glow-2 {
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.32), transparent 70%);
    bottom: -180px;
    right: -180px;
}

.cta-video-section .container {
    position: relative;
    z-index: 1;
}

.cta-video-header {
    margin-bottom: 56px;
}

.cta-video-tag {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.18), rgba(59, 130, 246, 0.18));
    border: 1px solid rgba(220, 38, 38, 0.45);
    color: #fca5a5;
    box-shadow: 0 0 24px rgba(220, 38, 38, 0.25);
}

.cta-video-title {
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 60px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.cta-highlight {
    background: linear-gradient(135deg, #ff4d4d 0%, #f97316 50%, #fbbf24 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 0 0 60px rgba(220, 38, 38, 0.5);
}

.cta-help {
    display: inline-block;
    margin-top: 14px;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 700;
    color: var(--blue-light);
    text-shadow: 0 0 24px rgba(96, 165, 250, 0.55);
}

.cta-video-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 34px;
}

.cta-video-area {
    width: min(820px, 92vw);
    position: relative;
}

.cta-video-area::before {
    content: '';
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse, rgba(220, 38, 38, 0.45), transparent 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
    animation: cta-pulse 3.6s ease-in-out infinite;
}

@keyframes cta-pulse {
    0%, 100% { opacity: 0.55; transform: scale(1); }
    50%      { opacity: 0.9;  transform: scale(1.06); }
}

/* Frame de TV 16:9 */
.cta-tv-frame {
    position: relative;
    z-index: 1;
    background: linear-gradient(145deg, #1e2d4a, #0b1224);
    border-radius: 22px;
    padding: 18px 18px 22px;
    aspect-ratio: 16 / 9;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(220, 38, 38, 0.4),
        0 0 70px rgba(220, 38, 38, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.08),
        inset 0 -4px 0 rgba(0, 0, 0, 0.4);
}

.cta-tv-frame .video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    cursor: pointer;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.06),
        inset 0 0 40px rgba(0, 0, 0, 0.6);
}

.cta-tv-frame .video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Pedestal/base da TV */
.tv-stand {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 38%;
    height: 22px;
    background: linear-gradient(180deg, #1e2d4a 0%, #0b1224 100%);
    border-radius: 0 0 14px 14px;
    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.6),
        inset 0 -2px 0 rgba(0, 0, 0, 0.4);
}

.tv-stand::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 130%;
    height: 8px;
    background: linear-gradient(180deg, #1e2d4a 0%, #0b1224 100%);
    border-radius: 6px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.55);
}

.cta-assista {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 18px 44px;
    background: linear-gradient(135deg, #ff1a1a 0%, #dc2626 50%, #991b1b 100%);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(26px, 3vw, 38px);
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 60px;
    box-shadow:
        0 16px 40px rgba(220, 38, 38, 0.55),
        inset 0 2px 0 rgba(255, 255, 255, 0.25),
        inset 0 -3px 6px rgba(0, 0, 0, 0.35);
    animation: cta-bounce 1.8s ease-in-out infinite;
}

.cta-arrow {
    display: inline-block;
    font-size: 1.2em;
    color: #fef3c7;
    text-shadow: 0 0 12px rgba(254, 243, 199, 0.7);
    animation: cta-arrow-jump 1.4s ease-in-out infinite;
}

.cta-arrow:last-child {
    animation-delay: 0.2s;
}

@keyframes cta-bounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

@keyframes cta-arrow-jump {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

@media (max-width: 560px) {
    .cta-video-section {
        padding: 100px 0 110px;
    }
    .cta-tv-frame {
        padding: 12px 12px 14px;
        border-radius: 16px;
    }
    .cta-assista {
        padding: 14px 30px;
        letter-spacing: 2px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 60px 0 40px;
    background: var(--bg-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 8px;
    max-width: 460px;
}

.footer-copy p {
    color: var(--text-muted);
    font-size: 13px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
        max-width: 380px;
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .sobre,
    .servicos,
    .portfolio {
        padding: 90px 0;
    }

    .nav {
        gap: 18px;
    }

    .nav a:not(.nav-cta) {
        display: none;
    }
}

@media (max-width: 968px) {
    .brand-web { left: 0; top: 8%; }
    .brand-davinci { right: 0; top: 45%; }
    .brand-youtube { left: 10%; bottom: 8%; }
}

@media (max-width: 560px) {
    .container {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
    }

    .destaque-box {
        padding: 22px 20px;
    }

    /* Badges menores no mobile */
    .brand-badge {
        padding: 10px 16px;
        font-size: 12px;
        gap: 8px;
    }

    .brand-badge .badge-icon {
        width: 18px;
        height: 18px;
    }
}

/* ============================================================
   HERO V2 — Chega de Templates Prontos
   ============================================================ */
.hero-v2 {
    padding: 130px 0 100px;
}

.hero-v2-content {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    grid-template-areas:
        "text  phone"
        "cta   phone";
    gap: 60px 70px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-v2-text   { grid-area: text;  }
.hero-v2-phone-wrap { grid-area: phone; justify-self: center; }
.hero-v2-cta-wrap   { grid-area: cta; justify-self: start; align-self: start; margin-top: -10px; }

.hero-v2 h1 {
    font-family: var(--font-display);
    font-size: clamp(34px, 4.4vw, 58px);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 0;
    letter-spacing: -0.025em;
    color: var(--text-white);
}

.hero-v2-sub-h1 {
    display: inline-block;
    margin-top: 18px;
    font-size: clamp(22px, 2.6vw, 36px);
    font-weight: 700;
    color: var(--text-soft);
    line-height: 1.25;
}

.hero-v2-sub-h1 strong {
    color: #60a5fa;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Celular no hero — menor que o da pág 2 */
.phone-frame-hero {
    width: 260px;
}

/* Label abaixo do celular no hero */
.hero-phone-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 16px;
    text-align: center;
}

.phone-label-line1 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-soft);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.phone-label-line2 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.2px;
}

.phone-label-link {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 20px;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(96, 165, 250, 0.4);
    border-radius: 10px;
    color: #93c5fd;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.phone-label-link:hover {
    background: rgba(59, 130, 246, 0.25);
    border-color: #60a5fa;
    color: #bfdbfe;
}

.phone-label-link-p6 {
    display: block;
    text-align: center;
    margin-top: 18px;
}

/* ============================================================
   PHONE FIRE SHELL — Camada de fogo ao redor do celular
   ============================================================ */
.phone-fire-shell {
    position: relative;
    display: inline-block;
    padding: 22px;
    border-radius: 50px;
    isolation: isolate;
}

/* Aro de fogo pulsante atrás do celular */
.phone-fire-glow {
    position: absolute;
    inset: -20px;
    border-radius: 60px;
    background:
        radial-gradient(ellipse at 50% 0%,   rgba(255, 220, 60, 0.85), transparent 55%),
        radial-gradient(ellipse at 100% 30%, rgba(255, 110, 30, 0.85), transparent 60%),
        radial-gradient(ellipse at 50% 100%, rgba(255, 60, 20, 0.85),  transparent 55%),
        radial-gradient(ellipse at 0% 70%,   rgba(255, 140, 40, 0.85), transparent 60%);
    filter: blur(28px);
    z-index: -1;
    animation: phone-fire-pulse 2.6s ease-in-out infinite;
    pointer-events: none;
}

.phone-fire-shell::before,
.phone-fire-shell::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 56px;
    pointer-events: none;
    z-index: -1;
}

/* Língua de fogo amarela (interna) */
.phone-fire-shell::before {
    background:
        radial-gradient(ellipse at 20% 0%,   rgba(255, 235, 80, 0.7), transparent 40%),
        radial-gradient(ellipse at 80% 0%,   rgba(255, 200, 50, 0.7), transparent 40%),
        radial-gradient(ellipse at 50% 100%, rgba(255, 180, 40, 0.7), transparent 45%);
    filter: blur(14px);
    animation: phone-fire-flicker 1.6s ease-in-out infinite alternate;
}

/* Brasa externa vermelha */
.phone-fire-shell::after {
    inset: -14px;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(255, 80, 20, 0.55), transparent 65%);
    filter: blur(32px);
    animation: phone-fire-flicker 2.1s ease-in-out infinite alternate-reverse;
}

@keyframes phone-fire-pulse {
    0%, 100% { opacity: 0.85; transform: scale(1); }
    50%      { opacity: 1;    transform: scale(1.04); }
}

@keyframes phone-fire-flicker {
    0%   { opacity: 0.7; transform: scale(0.98) translateY(0); }
    50%  { opacity: 1;   transform: scale(1.03) translateY(-3px); }
    100% { opacity: 0.85; transform: scale(1)   translateY(-1px); }
}

.phone-fire-shell-card {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    box-sizing: border-box;
}

.phone-fire-shell-card .video-phone-frame {
    width: 100%;
    box-sizing: border-box;
}

/* ============================================================
   PLAY BUTTON — Variante "mais abaixo" (não no centro)
   ============================================================ */
.video-play-btn.video-play-btn--bottom {
    top: auto;
    left: 50%;
    bottom: 18px;
    transform: translate(-50%, 0);
    width: 52px;
    height: 52px;
    background: rgba(0, 0, 0, 0.55);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-play-btn.video-play-btn--bottom:hover {
    transform: translate(-50%, -2px) scale(1.08);
    background: rgba(59, 130, 246, 0.85);
    box-shadow: 0 10px 28px rgba(59, 130, 246, 0.7);
}

.video-play-btn.video-play-btn--bottom svg {
    width: 22px;
    height: 22px;
}

.video-play-btn.video-play-btn--bottom.playing {
    opacity: 0;
}

.video-wrapper:hover .video-play-btn.video-play-btn--bottom.playing {
    opacity: 1;
}

/* ============================================================
   BOTÃO PEGANDO FOGO — "Vídeos que Viralizaram"
   ============================================================ */
.btn-fire {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 22px 44px;
    border-radius: 18px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 0.5px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    background-color: #ea580c;
    background: linear-gradient(135deg, #b91c1c 0%, #ea580c 35%, #f97316 70%, #fbbf24 100%);
    box-shadow:
        0 12px 36px rgba(249, 115, 22, 0.55),
        0 0 0 1px rgba(255, 200, 80, 0.25) inset,
        0 2px 0 rgba(255, 240, 180, 0.4) inset;
    cursor: pointer;
    z-index: 5;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(255, 200, 80, 0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: btn-fire-bob 2.4s ease-in-out infinite;
}

.btn-fire > * { pointer-events: none; }

.btn-fire:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow:
        0 22px 54px rgba(249, 115, 22, 0.75),
        0 0 0 1px rgba(255, 220, 100, 0.35) inset,
        0 2px 0 rgba(255, 240, 180, 0.6) inset;
}

.btn-fire-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    color: #fff7d6;
    filter: drop-shadow(0 0 6px rgba(255, 220, 100, 0.9));
}

.btn-fire-icon svg { width: 26px; height: 26px; display: block; }

.btn-fire-label {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(120, 30, 0, 0.7);
}

.btn-fire-em {
    font-style: normal;
    color: #fef08a;
    text-shadow:
        0 0 12px rgba(254, 240, 138, 0.9),
        0 2px 4px rgba(120, 30, 0, 0.7);
}

.btn-fire-arrow {
    position: relative;
    z-index: 2;
    font-size: 22px;
    animation: btn-fire-arrow-bounce 1.3s ease-in-out infinite;
    text-shadow: 0 2px 4px rgba(120, 30, 0, 0.7);
}

/* Halo de fogo ao redor do botão */
.btn-fire::before {
    content: '';
    position: absolute;
    inset: -18px;
    border-radius: 28px;
    background:
        radial-gradient(ellipse at 20% 100%, rgba(255, 220, 80, 0.8), transparent 55%),
        radial-gradient(ellipse at 80% 100%, rgba(255, 80, 20, 0.8), transparent 60%),
        radial-gradient(ellipse at 50% 0%,   rgba(255, 180, 40, 0.75), transparent 55%);
    filter: blur(22px);
    z-index: -1;
    animation: btn-fire-halo 2s ease-in-out infinite;
    pointer-events: none;
}

/* Línguas de fogo individuais (sobem do botão) */
.btn-fire-flames {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: visible;
}

.btn-fire-flames .flame {
    position: absolute;
    bottom: 70%;
    width: 22px;
    height: 38px;
    background: radial-gradient(ellipse at 50% 100%, #fde047 0%, #f97316 45%, #dc2626 75%, transparent 100%);
    border-radius: 50% 50% 25% 25% / 60% 60% 40% 40%;
    filter: blur(2px);
    opacity: 0.9;
    transform-origin: 50% 100%;
    animation: flame-rise 1.4s ease-in-out infinite;
}

.btn-fire-flames .f1 { left: 8%;  width: 18px; height: 30px; animation-delay: 0.0s; }
.btn-fire-flames .f2 { left: 28%; width: 22px; height: 42px; animation-delay: 0.2s; }
.btn-fire-flames .f3 { left: 50%; width: 26px; height: 50px; animation-delay: 0.1s; }
.btn-fire-flames .f4 { left: 72%; width: 20px; height: 38px; animation-delay: 0.35s; }
.btn-fire-flames .f5 { left: 90%; width: 16px; height: 28px; animation-delay: 0.5s; }

@keyframes flame-rise {
    0%   { transform: translateY(0)    scaleY(1)    scaleX(1);   opacity: 0.85; }
    50%  { transform: translateY(-18px) scaleY(1.25) scaleX(0.85); opacity: 1; }
    100% { transform: translateY(-32px) scaleY(0.6)  scaleX(0.5); opacity: 0; }
}

@keyframes btn-fire-bob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-5px); }
}

@keyframes btn-fire-arrow-bounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(4px); }
}

@keyframes btn-fire-halo {
    0%, 100% { opacity: 0.85; transform: scale(1); }
    50%      { opacity: 1;    transform: scale(1.06); }
}

/* ============================================================
   BADGES de VIEWS (na pág 2 — vídeos virais)
   ============================================================ */
.vid-badge-views {
    flex-direction: column;
    padding: 16px 14px;
    min-width: 96px;
    gap: 4px;
}

.vid-badge-views .badge-views {
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.vid-badge-tiktok.vid-badge-views .badge-views {
    color: #fef3c7;
}

.vid-badge-youtube.vid-badge-views .badge-views {
    color: #fff;
}

/* Tag de fogo */
.section-tag-fire {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(220, 38, 38, 0.15));
    border: 1px solid rgba(249, 115, 22, 0.4);
    color: #fdba74 !important;
}

.videos-section-viral {
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-primary) 100%);
}

/* ============================================================
   PÁG 6 — VIDEO AGENCIA SITE (Ênfase final)
   ============================================================ */
.agencia-site-section {
    position: relative;
    padding: 140px 0;
    background:
        radial-gradient(ellipse 70% 60% at 20% 30%, rgba(37, 99, 235, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 70%, rgba(59, 130, 246, 0.2) 0%, transparent 60%),
        linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-deep) 100%);
    overflow: hidden;
}

.agencia-glow-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4), transparent 70%);
}

.agencia-glow-2 {
    bottom: -15%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.18), transparent 70%);
}

.agencia-site-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 70px;
    align-items: center;
}

.agencia-tag {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(96, 165, 250, 0.08));
    border: 1px solid rgba(96, 165, 250, 0.35);
    color: #93c5fd !important;
}

.agencia-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.6vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-white);
    margin: 14px 0 22px;
}

.agencia-desc {
    font-size: 19px;
    line-height: 1.55;
    color: var(--text-soft);
    margin-bottom: 28px;
}

.agencia-desc strong {
    color: var(--text-white);
}

.agencia-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.agencia-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-soft);
}

.agencia-bullets li strong {
    color: var(--text-white);
}

.bullet-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    font-weight: 900;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.45);
    margin-top: 2px;
}

.agencia-deadline {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 20px 28px;
    width: fit-content;
    max-width: 100%;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.18), rgba(220, 38, 38, 0.1));
    border: 1.5px solid rgba(249, 115, 22, 0.5);
    border-radius: 18px;
    box-shadow:
        0 12px 32px rgba(249, 115, 22, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    position: relative;
}

.agencia-deadline::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 24px;
    background: radial-gradient(ellipse, rgba(249, 115, 22, 0.35), transparent 70%);
    filter: blur(20px);
    z-index: -1;
    pointer-events: none;
    animation: phone-fire-pulse 3s ease-in-out infinite;
}

.deadline-badge {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316, #dc2626);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.6);
}

.deadline-badge svg { width: 26px; height: 26px; }

.deadline-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.deadline-label {
    font-size: 13px;
    color: #fdba74;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
}

.deadline-value {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-top: 2px;
}

.deadline-value em {
    font-style: normal;
    color: #fbbf24;
    font-size: 18px;
    font-weight: 600;
}

.agencia-site-phone {
    justify-self: center;
}

.agencia-site-phone .phone-fire-shell-card .video-phone-frame {
    width: 280px;
}

/* ============================================================
   RESPONSIVE — V2
   ============================================================ */
@media (max-width: 968px) {
    .hero-v2-content {
        grid-template-columns: 1fr;
        grid-template-areas:
            "text"
            "phone"
            "cta";
        gap: 36px;
        text-align: center;
    }

    .hero-v2-cta-wrap { justify-self: center; }

    .btn-fire {
        font-size: 17px;
        padding: 18px 32px;
    }

    /* Mobile: esconde efeitos decorativos que podem renderizar mal */
    .btn-fire-flames,
    .btn-fire::before,
    .phone-fire-shell::before,
    .phone-fire-shell::after,
    .phone-fire-glow {
        display: none !important;
    }

    .agencia-site-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .agencia-bullets li { text-align: left; }

    .agencia-site-text { display: flex; flex-direction: column; align-items: center; }
    .agencia-deadline { margin: 0 auto; align-self: center; }
}

@media (max-width: 560px) {
    .phone-frame-hero { width: 220px; }

    .agencia-site-phone .phone-fire-shell-card .video-phone-frame { width: 230px; }

    .btn-fire {
        font-size: 15px;
        padding: 16px 24px;
        gap: 10px;
    }

    .btn-fire-icon { width: 22px; height: 22px; }
}

/* ============================================================
   SEÇÃO CONTATO
   ============================================================ */
.contato-section {
    position: relative;
    padding: 120px 0 100px;
    overflow: hidden;
}

.contato-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.contato-glow-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(59,130,246,0.18) 0%, transparent 70%);
    top: -100px; right: -150px;
}

.contato-glow-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(37,99,235,0.14) 0%, transparent 70%);
    bottom: -80px; left: -100px;
}

.contato-section .container { position: relative; z-index: 1; }

.contato-wrap {
    max-width: 680px;
    margin: 48px auto 0;
    padding: 0 24px;
}

.contato-card {
    position: relative;
    background: rgba(15, 30, 63, 0.7);
    border: 1px solid rgba(59, 130, 246, 0.22);
    border-radius: 28px;
    padding: 48px 44px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 24px 64px rgba(0,0,0,0.45), 0 0 0 1px rgba(59,130,246,0.08) inset;
    overflow: hidden;
}

.contato-card::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(59,130,246,0.06) 0%, transparent 60%);
    pointer-events: none;
    border-radius: inherit;
}

.contato-card > * { position: relative; z-index: 1; }

.contato-card-title {
    text-align: center;
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-white);
}

.contato-card-sub {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 36px;
}

/* Campos */
.cf-field {
    margin-bottom: 22px;
}

.cf-field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--blue-light);
    margin-bottom: 8px;
}

.cf-field input,
.cf-field textarea {
    width: 100%;
    background: rgba(5, 11, 26, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 12px;
    padding: 14px 18px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
    color: rgba(148, 163, 184, 0.55);
}

.cf-field input:focus,
.cf-field textarea:focus {
    border-color: var(--blue-bright);
    box-shadow: 0 0 0 4px rgba(59,130,246,0.18), 0 0 20px rgba(59,130,246,0.22);
}

.cf-field textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.6;
}

/* Botão enviar */
.cf-submit {
    width: 100%;
    margin-top: 8px;
    padding: 17px;
    font-size: 15px;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue-bright), var(--blue-accent));
    border: none;
    border-radius: 14px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s, filter 0.25s;
    box-shadow: 0 6px 24px rgba(59,130,246,0.45);
}

.cf-submit::before {
    content: "";
    position: absolute; inset: -3px;
    background: linear-gradient(135deg, var(--blue-bright), var(--blue-light), var(--blue-accent));
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.cf-submit:hover {
    transform: translateY(-3px) scale(1.02);
    filter: brightness(1.12);
    box-shadow: 0 14px 36px rgba(59,130,246,0.6);
}

.cf-submit:hover::before { opacity: 1; }
.cf-submit:active { transform: translateY(-1px) scale(1); }
.cf-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

/* Sucesso */
.cf-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    padding: 16px 20px;
    text-align: center;
    margin-bottom: 24px;
    color: #86efac;
    font-size: 14px;
    font-weight: 600;
}

/* Responsivo */
@media (max-width: 768px) {
    .contato-card { padding: 32px 24px; }
    .contato-wrap { padding: 0 16px; }
}

@media (max-width: 480px) {
    .contato-card { padding: 28px 18px; border-radius: 20px; }
    .cf-field input, .cf-field textarea { padding: 12px 14px; font-size: 14px; }
    .contato-card-title { font-size: 22px; }
}

