/* ====================================================
   BLOCO 1: HEADER + HERO
   ==================================================== */
.meu-plugin-customizado {
    font-family: 'Inter', sans-serif;
    color: #0A192F;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.meu-plugin-customizado .font-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.text-cyan-glow { color: #00BBD4; }

.btn-navy {
    display: inline-block;
    background-color: #0A192F;
    color: #FFFFFF;
    padding: 16px 40px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-navy:hover {
    background-color: #00BBD4;
    transform: translateY(-2px);
}

.btn-light {
    display: inline-block;
    background-color: #FFFFFF;
    color: #0A192F;
    border: 1px solid #E2E8F0;
    padding: 16px 40px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-light:hover {
    background-color: #F8FAFC;
    border-color: #CBD5E1;
    transform: translateY(-2px);
}

.cv-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    border-bottom: 1px solid #F1F5F9;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 999 !important;
}

.cv-header-inner {
    max-width: 1400px;
    margin: 0 auto !important;
    padding: 0 24px !important;
    height: 96px !important;
    min-height: 96px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.cv-header-logo {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    margin: 0 !important;
}

.cv-header-logo img {
    max-height: 60px !important;
    height: 60px !important;
    width: auto !important;
    display: block !important;
    margin: 0 !important;
    vertical-align: middle !important;
}

.cv-header-nav {
    display: none;
    align-items: center !important;
    gap: 24px;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    margin: 0 !important;
}

.cv-header-nav a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
}
.cv-header-nav a:hover { color: #00BBD4; }

.cv-header-divider {
    width: 1px;
    height: 16px;
    background: rgba(10, 25, 47, 0.12);
    flex-shrink: 0;
}

.cv-header-cta {
    display: none;
}
.cv-header-cta a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #0A192F;
    text-decoration: none;
    background: transparent;
    border: 1px solid rgba(10, 25, 47, 0.18);
    border-radius: 6px;
    padding: 10px 22px !important;
    margin: 0 !important;
    line-height: 1 !important;
    transition: all 0.3s ease;
}
.cv-header-cta a:hover {
    color: #00BBD4;
    border-color: #00BBD4;
    background: rgba(0, 187, 212, 0.06);
}

.hero-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 88vh;
    padding-top: 96px;
    background-color: #FFFFFF;
    position: relative;
    overflow: hidden;
    align-items: stretch;
}

.hero-fade-right {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80%;
    background: linear-gradient(to left, #FFFFFF 0%, rgba(255,255,255,0.7) 50%, transparent 100%);
}

.hero-fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 160px;
    background: linear-gradient(to top, #FFFFFF 0%, transparent 100%);
}

.hero-col-content {
    width: 100%;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 64px 16px;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: #0A192F;
    margin-bottom: 24px;
    width: 100%;
}

.hero-desc {
    font-size: 16px;
    color: #475569;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
}

.hero-col-showcase {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 48px 24px;
}

.showcase-stage {
    position: relative;
    width: 100%;
    max-width: 380px;
    height: 170px;
}

.showcase-item {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transform: scale(0.7) translateY(24px);
    pointer-events: none;
}

.showcase-item.is-active {
    animation: showcaseEnter 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    pointer-events: auto;
}

.showcase-item.is-leaving {
    animation: showcaseExit 0.8s ease forwards;
}

@keyframes showcaseEnter {
    0% { opacity: 0; transform: scale(0.7) translateY(24px); }
    55% { opacity: 1; transform: scale(1.1) translateY(-6px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes showcaseExit {
    0% { opacity: 1; transform: scale(1) translateY(0); }
    100% { opacity: 0; transform: scale(0.65) translateY(-30px); }
}

.showcase-line {
    font-size: 46px;
    font-weight: 800;
    color: #00BBD4;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.hero-col-logos {
    width: 100%;
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 32px 24px;
}

.hero-logos-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 44px;
}

.hero-col-logos .n8n-logo {
    width: 68px;
    height: 68px;
    font-size: 22px;
    border-radius: 12px;
}

.tech-parallax {
    display: inline-flex;
    will-change: transform;
    transition: transform 0.25s ease-out;
}

.tech-float {
    display: inline-flex;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

@keyframes techFloatA {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-12px, -26px) rotate(-7deg); }
}

@keyframes techFloatB {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(12px, -24px) rotate(7deg); }
}

.hero-logos-row:nth-child(1) .tech-parallax:nth-child(1) .tech-float { animation-name: techFloatA; animation-duration: 4.2s; animation-delay: 0s; }
.hero-logos-row:nth-child(1) .tech-parallax:nth-child(2) .tech-float { animation-name: techFloatB; animation-duration: 5s; animation-delay: 0.3s; }
.hero-logos-row:nth-child(1) .tech-parallax:nth-child(3) .tech-float { animation-name: techFloatA; animation-duration: 4.6s; animation-delay: 0.6s; }
.hero-logos-row:nth-child(2) .tech-parallax:nth-child(1) .tech-float { animation-name: techFloatB; animation-duration: 5.4s; animation-delay: 0.15s; }
.hero-logos-row:nth-child(2) .tech-parallax:nth-child(2) .tech-float { animation-name: techFloatA; animation-duration: 4.9s; animation-delay: 0.45s; }

.hero-tech-item {
    height: 68px !important;
    width: auto !important;
    max-width: none !important;
    display: block !important;
    object-fit: contain !important;
    opacity: 0;
    filter: blur(6px);
    transform: translateY(12px);
    transition: opacity 0.9s ease, filter 0.9s ease, transform 0.9s ease;
}

/* Java tem um recorte bem mais fino/alto que os outros icones;
   aumentamos a altura dele pra equilibrar o peso visual entre as logos. */
.hero-tech-java {
    height: 88px !important;
}

.hero-logos-row:nth-child(1) .hero-tech-item:nth-child(1) { transition-delay: 0.15s; }
.hero-logos-row:nth-child(1) .hero-tech-item:nth-child(2) { transition-delay: 0.3s; }
.hero-logos-row:nth-child(1) .hero-tech-item:nth-child(3) { transition-delay: 0.45s; }
.hero-logos-row:nth-child(2) .hero-tech-item:nth-child(1) { transition-delay: 0.6s; }
.hero-logos-row:nth-child(2) .hero-tech-item:nth-child(2) { transition-delay: 0.75s; }

/* Estado "materializado", aplicado via IntersectionObserver (script.js) */
.hero-col-logos.is-visible .hero-tech-item {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.hero-tech-item:hover {
    transform: translateY(-3px);
}

@media (min-width: 768px) {
    .cv-header-nav { display: flex; }
    .cv-header-cta { display: block; }

    .hero-section { flex-direction: row; }
    .hero-col-logos { width: 30%; }
    .hero-col-content { width: 40%; padding: 64px 32px; }
    .hero-col-showcase { width: 30%; }
    .hero-buttons { flex-direction: row; }
}

@media (min-width: 1024px) {
    .hero-title { font-size: 48px; }
    .hero-desc { font-size: 18px; }
}

@media (min-width: 1280px) {
    .hero-title { font-size: 60px; }
}

/* ====================================================
   SEÇÃO 2: HEADER CURTO + CAIXAS SÓLIDAS ESCURAS (TEAL & NAVY)
   ==================================================== */
:root {
    --cv-navy: #0A1128;
    --cv-cyan: #00E5FF;
    --cv-cyan-dark: #008CA0;
    --cv-bg-section: #F8FAFC;
    --cv-white: #FFFFFF;
    --cv-text-title: #0F172A;
    --cv-text-p: #475569;
    --cv-dark-bg: #020617;
    --cv-blue: #3B82F6;
    --cv-text-main: #F8FAFC;
    --cv-text-muted: #94A3B8;
}

.objective-section {
    background-color: var(--cv-bg-section);
    padding: 110px 5%;
    font-family: 'Outfit', sans-serif;
}

.objective-container {
    max-width: 1050px;
    margin: 0 auto;
}

/* === HEADER LIMPO E CURTO === */
.saas-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 70px;
}

.saas-top-badge {
    display: inline-flex;
    align-items: center;
    background: var(--cv-white);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 50px;
    padding: 10px 26px 10px 10px;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--cv-navy);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    margin-bottom: 24px;
}

.avatar-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 14px;
    line-height: 0;
}

.avatar-group img {
    display: block;
    width: 34px !important;
    height: 34px !important;
    flex-shrink: 0;
    border-radius: 50% !important;
    border: 2px solid var(--cv-white);
    margin-left: -12px;
    object-fit: cover;
}
.avatar-group img:first-child { margin-left: 0; }

.saas-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--cv-navy);
    line-height: 1.2;
    letter-spacing: -1px;
    max-width: 800px;
    margin-bottom: 16px;
}

.saas-title span {
    color: var(--cv-cyan-dark);
}

.saas-subtitle {
    font-size: 18px;
    color: var(--cv-text-p);
    line-height: 1.6;
    max-width: 650px;
    font-weight: 400;
}

/* === CAIXAS RETANGULARES === */
.service-row {
    display: flex;
    align-items: center;
    padding: 50px 60px;
    border-radius: 24px;
    margin-bottom: 24px;
    gap: 70px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-row:hover { transform: translateY(-4px); }

/* CAIXA 1 (CIANO ESCURO SÓLIDO / TEAL) */
.row-light {
    background: var(--cv-cyan-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 140, 160, 0.15);
}
.row-light:hover {
    box-shadow: 0 30px 50px rgba(0, 140, 160, 0.25);
    background: #007d8f;
}

/* CAIXA 2 (AZUL MARINHO) */
.row-dark {
    background: var(--cv-navy);
    border: 1px solid rgba(0, 229, 255, 0.15);
    box-shadow: 0 20px 50px rgba(10, 17, 40, 0.2);
}
.row-dark:hover {
    box-shadow: 0 30px 60px rgba(10, 17, 40, 0.3);
    border-color: rgba(0, 229, 255, 0.4);
}

.row-content { flex: 1; max-width: 380px; }

.row-number {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.row-number::before {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
}

.row-light .row-number,
.row-dark .row-number { color: var(--cv-cyan); }

.row-light .row-number::before,
.row-dark .row-number::before { background: var(--cv-cyan); }

.row-title { font-size: 30px; font-weight: 700; margin-bottom: 16px; line-height: 1.2; letter-spacing: -0.5px; }
.row-light .row-title,
.row-dark .row-title { color: var(--cv-white); }

.row-desc { font-size: 16px; line-height: 1.6; font-weight: 400; }
.row-light .row-desc { color: rgba(255, 255, 255, 0.85); }
.row-dark .row-desc { color: #A0AAB2; }

/* LADO DIREITO DA CAIXA (VANTAGENS) */
.row-benefits { flex: 1.3; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.benefit-item { display: flex; flex-direction: column; gap: 10px; }

.benefit-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }

.row-light .benefit-icon { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); }
.row-light .benefit-icon svg { stroke: var(--cv-white); }

.row-dark .benefit-icon { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(0, 229, 255, 0.15); }
.row-dark .benefit-icon svg { stroke: var(--cv-cyan); }

.benefit-icon svg { width: 18px; height: 18px; fill: none; stroke-width: 2.5; }

.benefit-title { font-size: 16px; font-weight: 700; margin-bottom: 2px; }
.row-light .benefit-title,
.row-dark .benefit-title { color: var(--cv-white); }

.benefit-text { font-size: 14px; line-height: 1.5; }
.row-light .benefit-text { color: rgba(255, 255, 255, 0.75); }
.row-dark .benefit-text { color: #A0AAB2; }

@media (max-width: 992px) {
    .service-row { flex-direction: column; padding: 40px; gap: 32px; }
    .row-content { max-width: 100%; text-align: left; }
    .row-number { justify-content: flex-start; }
    .row-benefits { width: 100%; }
}

@media (max-width: 768px) {
    .objective-section { padding: 60px 20px; }

    .saas-top-badge {
        font-size: 12px;
        padding: 8px 18px 8px 8px;
        white-space: nowrap;
    }
    .avatar-group { margin-right: 10px; }
    .avatar-group img { width: 28px !important; height: 28px !important; margin-left: -9px; }

    .saas-title { font-size: 32px; line-height: 1.2; letter-spacing: -1px; margin-bottom: 16px; }
    .saas-subtitle { font-size: 15px; max-width: 100%; }

    .service-row { padding: 32px 24px; gap: 32px; }

    .row-number { font-size: 12px; margin-bottom: 16px; }
    .row-title { font-size: 24px; margin-bottom: 12px; }
    .row-desc { font-size: 14px; line-height: 1.5; }

    .row-benefits {
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
    }

    .benefit-item {
        align-items: flex-start;
        text-align: left;
    }
    .benefit-icon { width: 32px; height: 32px; border-radius: 8px; }
    .benefit-icon svg { width: 16px; height: 16px; }
    .benefit-title { font-size: 13px; line-height: 1.2; margin-bottom: 4px; }
    .benefit-text { font-size: 12px; line-height: 1.4; }
}

/* ====================================================
   SEÇÃO 3: SITES & E-COMMERCE + AUTOMAÇÃO (N8N) + FERRAMENTAS
   ==================================================== */
.web-clean-section, .automation-section, .global-tools-ribbon { box-sizing: border-box; }
.web-clean-section *, .automation-section *, .global-tools-ribbon * { box-sizing: border-box; }

.web-clean-section {
    background-color: var(--cv-dark-bg);
    padding: 120px 5% 40px 5%;
    font-family: 'Outfit', sans-serif;
    position: relative;
    overflow: hidden;
}

.web-clean-section::after {
    content: ''; position: absolute; top: 0; right: 0; width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.05) 0%, transparent 60%); filter: blur(100px); pointer-events: none;
}

.web-container { max-width: 1250px; margin: 0 auto; position: relative; z-index: 5; }

.web-top-grid {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; margin-bottom: 60px;
}

.web-left-content { padding-top: 20px; }

.web-tag {
    display: inline-flex; align-items: center; gap: 10px; color: var(--cv-cyan); font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 3px; margin-bottom: 24px;
}
.web-tag::before { content: ''; display: block; width: 20px; height: 2px; background: var(--cv-cyan); }

.web-title {
    font-size: 56px; font-weight: 800; color: var(--cv-text-main); line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 30px;
}

.text-glow {
    background: linear-gradient(135deg, var(--cv-cyan) 0%, var(--cv-blue) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.web-desc { font-size: 18px; color: var(--cv-text-muted); line-height: 1.7; font-weight: 300; max-width: 500px; }

.web-right-benefits { display: flex; flex-direction: column; gap: 40px; position: relative; }
.web-right-benefits::before {
    content: ''; position: absolute; left: 23px; top: 30px; bottom: 30px; width: 1px; background: rgba(255, 255, 255, 0.05); z-index: -1;
}

.benefit-row { display: flex; align-items: flex-start; gap: 30px; }
.benefit-icon-wrap {
    width: 48px; height: 48px; background: var(--cv-dark-bg); border: 1px solid rgba(0, 229, 255, 0.3); border-radius: 12px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 0 20px rgba(0, 229, 255, 0.1);
}
.benefit-icon-wrap svg { width: 20px; height: 20px; stroke: var(--cv-cyan); fill: none; stroke-width: 2; }

.benefit-text-wrap h3 { font-size: 22px; font-weight: 700; color: var(--cv-text-main); margin-bottom: 12px; letter-spacing: -0.5px; }
.benefit-text-wrap p { font-size: 16px; color: var(--cv-text-muted); line-height: 1.6; font-weight: 300; max-width: 400px; }

.section-divider-wrap {
    background-color: var(--cv-dark-bg);
    padding: 60px 5%;
}
.section-divider-wrap .section-divider {
    width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.5), transparent);
    margin: 0 auto; max-width: 1200px;
}

.automation-section {
    background-color: var(--cv-dark-bg);
    padding: 40px 5% 100px 5%;
    font-family: 'Outfit', sans-serif;
    position: relative;
    overflow: hidden;
}

.auto-container { max-width: 1250px; margin: 0 auto; position: relative; z-index: 5; }

.auto-header { text-align: center; margin-bottom: 80px; }

.auto-tag {
    display: inline-block; padding: 6px 18px; background: rgba(0, 229, 255, 0.05); border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 100px; color: var(--cv-cyan); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 24px;
}

.auto-title { font-size: 52px; font-weight: 800; color: var(--cv-text-main); line-height: 1.15; letter-spacing: -1.5px; max-width: 800px; margin: 0 auto 24px auto; }
.auto-desc { font-size: 18px; color: var(--cv-text-muted); line-height: 1.7; font-weight: 300; max-width: 700px; margin: 0 auto; }

.workflow-board { display: flex; align-items: center; justify-content: center; gap: 40px; margin-bottom: 80px; position: relative; }
.workflow-board::before {
    content: ''; position: absolute; top: 50%; left: 10%; right: 10%; height: 3px;
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.5) 0%, rgba(16, 185, 129, 0.5) 50%, rgba(59, 130, 246, 0.5) 100%); z-index: 0;
}

.wf-node {
    background: rgba(15, 23, 42, 0.9); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; padding: 30px;
    width: 320px; position: relative; z-index: 2; backdrop-filter: blur(10px); box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.wf-node.trigger { border-top: 3px solid #F59E0B; }
.wf-node.logic { border-top: 3px solid #10B981; }
.wf-node.action { border-top: 3px solid var(--cv-blue); }

.wf-node-header { display: flex; align-items: center; gap: 15px; margin-bottom: 16px; }
.wf-icon { width: 40px; height: 40px; border-radius: 8px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; }
.wf-node.trigger .wf-icon svg { stroke: #F59E0B; }
.wf-node.logic .wf-icon svg { stroke: #10B981; }
.wf-node.action .wf-icon svg { stroke: var(--cv-blue); }
.wf-icon svg { width: 20px; height: 20px; fill: none; stroke-width: 2; }

.wf-node-title { font-size: 18px; font-weight: 700; color: var(--cv-text-main); }
.wf-node-desc { font-size: 14px; color: var(--cv-text-muted); line-height: 1.5; }

.auto-crucial-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
    border-top: 1px solid rgba(255,255,255,0.05); padding-top: 60px;
}
.crucial-box { text-align: left; padding: 0 20px; }
.crucial-box h4 { font-size: 18px; font-weight: 700; color: var(--cv-cyan); margin-bottom: 12px; }
.crucial-box p { font-size: 14px; color: var(--cv-text-muted); line-height: 1.6; }

.global-tools-ribbon {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 5% 40px 5%;
    display: flex; flex-direction: column; align-items: center; text-align: center;
    background-color: var(--cv-dark-bg);
}

.tools-title { font-size: 13px; font-weight: 600; color: var(--cv-text-muted); text-transform: uppercase; letter-spacing: 4px; margin-bottom: 40px; }
.tools-grid { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 40px; max-width: 1200px; margin: 0 auto; }

.tool-item { display: flex; align-items: center; gap: 12px; opacity: 0.9; transition: opacity 0.3s ease; }
.tool-item:hover { opacity: 1; }
.tool-item img { width: 34px; height: 34px; object-fit: contain; transition: transform 0.3s ease; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); }
.tool-item:hover img { transform: translateY(-3px); }
.tool-item span { color: var(--cv-text-main); font-size: 15px; font-weight: 500; }

.n8n-logo {
    display: flex; align-items: center; justify-content: center; width: 34px; height: 34px;
    background: #EA5252; color: white; font-weight: 900; font-size: 14px; border-radius: 6px; letter-spacing: -0.5px;
    transition: transform 0.3s ease;
}
.tool-item:hover .n8n-logo { transform: translateY(-3px); }

@media (max-width: 1024px) {
    .web-top-grid { gap: 60px; }
    .workflow-board { flex-direction: column; gap: 40px; }
    .workflow-board::before { top: 10%; bottom: 10%; left: 50%; width: 3px; height: auto; background: linear-gradient(180deg, rgba(245, 158, 11, 0.5) 0%, rgba(16, 185, 129, 0.5) 50%, rgba(59, 130, 246, 0.5) 100%); }
}

@media (max-width: 768px) {
    .web-clean-section { padding: 60px 20px 20px 20px; }
    .section-divider-wrap { padding: 30px 20px; }
    .automation-section { padding: 20px 20px 60px 20px; }

    .web-top-grid { grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }

    .web-title, .auto-title { font-size: 32px; line-height: 1.2; letter-spacing: -1px; margin-bottom: 16px; }
    .web-desc, .auto-desc { font-size: 15px; line-height: 1.5; margin-bottom: 24px; max-width: 100%; }

    .web-right-benefits { gap: 24px; }
    .web-right-benefits::before { display: none; }

    .benefit-row { gap: 16px; }
    .benefit-icon-wrap { width: 40px; height: 40px; border-radius: 10px; }
    .benefit-icon-wrap svg { width: 18px; height: 18px; }
    .benefit-text-wrap h3 { font-size: 18px; margin-bottom: 6px; }
    .benefit-text-wrap p { font-size: 14px; line-height: 1.5; }

    .auto-header { margin-bottom: 40px; }
    .wf-node { width: 100%; padding: 24px; border-radius: 12px; }
    .wf-node-title { font-size: 16px; }
    .wf-node-desc { font-size: 13px; }

    .auto-crucial-grid { grid-template-columns: 1fr; gap: 24px; padding-top: 40px; }
    .crucial-box { padding: 0; }
    .crucial-box h4 { font-size: 16px; margin-bottom: 8px; }
    .crucial-box p { font-size: 13px; line-height: 1.5; }

    .tools-grid { gap: 20px; }
    .tool-item { flex-direction: column; gap: 5px; }
    .tool-item img, .n8n-logo { width: 28px; height: 28px; }
    .tool-item span { font-size: 13px; }
    .global-tools-ribbon { padding: 50px 20px 30px 20px; }
}

/* ====================================================
   SEÇÃO 4: SOBRE / CVISION (MÉTRICAS + FUNDADOR)
   ==================================================== */
.cvision-section {
    background-color: #FFFFFF;
    padding: 100px 5%;
    font-family: 'Outfit', sans-serif;
    box-sizing: border-box;
}

.cvision-container {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.cvision-info {
    display: flex;
    flex-direction: column;
}

.cvision-header-group {
    display: flex;
    flex-direction: column;
}

.cvision-brand-title {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -2px;
    line-height: 1;
    text-align: left;
}

.c-cyan { color: var(--cv-cyan-dark, #008CA0); }
.v-navy { color: var(--cv-navy, #0A1128); }

.cvision-text p {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: 400;
    text-align: left;
}
.cvision-text p:last-child { margin-bottom: 0; }

.cvision-metrics {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(10, 17, 40, 0.08);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.metric-item {
    display: flex;
    flex-direction: column;
    padding-right: 20px;
    border-right: 1px solid rgba(10, 17, 40, 0.08);
}

.metric-item:last-child {
    border-right: none;
    padding-right: 0;
}

.metric-number {
    font-size: 44px;
    font-weight: 900;
    color: var(--cv-navy, #0A1128);
    margin-bottom: 4px;
    letter-spacing: -2px;
    line-height: 1;
}

.metric-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--cv-cyan-dark, #008CA0);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.4;
}

.founder-box {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(10, 17, 40, 0.04);
}

.founder-photo {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.premium-glass-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    padding: 10px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    width: max-content;
    box-shadow: 0 10px 25px rgba(10, 17, 40, 0.12);
}

.pgt-name {
    color: var(--cv-navy, #0A1128);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.2px;
}

.pgt-role {
    color: var(--cv-cyan-dark, #008CA0);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.founder-bottom {
    padding: 24px 10px 10px 10px;
    text-align: center;
}

.fb-expertise {
    display: inline-block;
    background: #F1F5F9;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    color: var(--cv-navy, #0A1128);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .cvision-container {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .cvision-info { display: contents; }

    .cvision-header-group { order: 1; width: 100%; }

    .founder-box {
        order: 2;
        max-width: 420px;
        margin: 0 auto;
        width: 100%;
    }

    .cvision-metrics {
        order: 3;
        width: 100%;
        margin-top: 10px;
        padding-top: 0;
        border-top: none;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .cvision-section { padding: 60px 20px; }

    .cvision-brand-title { font-size: 48px; margin-bottom: 16px; }

    .cvision-metrics {
        gap: 8px;
    }

    .metric-item {
        padding-right: 8px;
        border-right: 1px solid rgba(10, 17, 40, 0.08);
        align-items: center;
        text-align: center;
    }

    .metric-item:last-child {
        border-right: none;
        padding-right: 0;
    }

    .metric-number {
        font-size: 26px;
        letter-spacing: -1px;
        margin-bottom: 4px;
    }

    .metric-label {
        font-size: 8px;
        letter-spacing: 0.5px;
    }

    .premium-glass-tag { padding: 8px 14px; bottom: 14px; left: 14px; }
    .pgt-name { font-size: 15px; }
    .pgt-role { font-size: 9px; }

    .founder-bottom { padding: 20px 10px 10px 10px; }
    .fb-expertise { font-size: 10px; margin-bottom: 5px; }
}

/* ====================================================
   SEÇÃO 5: O COMPARATIVO
   ==================================================== */
.compare-section {
    background-color: var(--cv-navy, #0A1128);
    background-image: radial-gradient(circle at top right, rgba(0, 229, 255, 0.05), transparent 40%);
    padding: 120px 5%;
    font-family: 'Outfit', sans-serif;
    color: #FFFFFF;
}

.compare-container {
    max-width: 1150px;
    margin: 0 auto;
}

.compare-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 70px;
}

.compare-top-badge {
    display: inline-block;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    color: #94A3B8;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.compare-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -2px;
    color: #FFFFFF;
    margin: 0 0 20px 0;
}

.compare-title .text-cyan {
    color: var(--cv-cyan, #00E5FF);
}

.compare-subtitle {
    font-size: 18px;
    color: #94A3B8;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 30px;
    align-items: center;
}

.comp-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comp-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 16px;
    line-height: 1.5;
}

.comp-list svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 2px;
}

.card-bad {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    opacity: 0.7;
    transform: scale(0.95);
    transition: opacity 0.3s ease;
}

.card-bad:hover { opacity: 1; }

.card-bad-header h3 { font-size: 24px; color: #94A3B8; margin-bottom: 8px; font-weight: 700; }
.card-bad-header p { color: #64748B; font-size: 14px; margin-bottom: 40px; }
.card-bad .comp-list li { color: #94A3B8; }
.card-bad .comp-list svg { stroke: #EF4444; }

.card-cvision {
    position: relative;
    background: linear-gradient(145deg, rgba(10, 17, 40, 0.9), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 20px 50px rgba(0, 229, 255, 0.1);
    z-index: 2;
}

.card-cvision::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 24px;
    box-shadow: inset 0 0 40px rgba(0, 229, 255, 0.05);
    pointer-events: none;
}

.card-cvision-header h3 { font-size: 32px; color: #FFFFFF; margin-bottom: 8px; font-weight: 900; letter-spacing: -1px; }
.card-cvision-header p { color: var(--cv-cyan, #00E5FF); font-size: 15px; font-weight: 600; margin-bottom: 40px; letter-spacing: 1px; text-transform: uppercase; }
.card-cvision .comp-list li { color: #F8FAFC; font-weight: 500; }
.card-cvision .comp-list svg { stroke: var(--cv-cyan, #00E5FF); fill: rgba(0, 229, 255, 0.2); }

@media (max-width: 992px) {
    .compare-grid { grid-template-columns: 1fr; gap: 30px; }
    .card-bad { transform: scale(1); opacity: 0.9; }
}

@media (max-width: 768px) {
    .compare-section {
        padding: 60px 20px;
    }

    .compare-header {
        margin-bottom: 40px;
    }

    .compare-top-badge {
        font-size: 10px;
        margin-bottom: 16px;
    }

    .compare-title {
        font-size: 32px;
        letter-spacing: -1px;
        margin-bottom: 16px;
    }

    .compare-subtitle {
        font-size: 15px;
        line-height: 1.5;
        padding: 0;
    }

    .compare-grid {
        gap: 24px;
    }

    .card-bad {
        padding: 30px 20px;
        border-radius: 20px;
    }
    .card-bad-header h3 { font-size: 20px; margin-bottom: 6px; }
    .card-bad-header p { font-size: 13px; margin-bottom: 24px; }

    .card-cvision {
        padding: 40px 24px;
        border-radius: 20px;
    }
    .card-cvision::before { border-radius: 20px; }
    .card-cvision-header h3 { font-size: 26px; }
    .card-cvision-header p { font-size: 13px; margin-bottom: 30px; }

    .comp-list { gap: 16px; }
    .comp-list li { font-size: 14px; gap: 12px; }
    .comp-list svg { width: 18px; height: 18px; }
}

/* ====================================================
   SEÇÃO 6: FAQ
   ==================================================== */
.faq-section {
    background-color: #F8FAFC;
    padding: 100px 5%;
    font-family: 'Outfit', sans-serif;
}

.faq-container {
    max-width: 680px;
    margin: 0 auto;
}

.faq-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 50px;
}

.faq-top-badge {
    display: inline-block;
    background: transparent;
    border: 1px solid rgba(10, 17, 40, 0.15);
    border-radius: 6px;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    color: var(--cv-navy, #0A1128);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.faq-title {
    font-size: 46px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: var(--cv-navy, #0A1128);
    margin: 0 0 16px 0;
}

.faq-title .c-cyan {
    color: var(--cv-cyan-dark, #008CA0);
}

.faq-subtitle {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    font-weight: 400;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: linear-gradient(145deg, #0A1128, #0F172A);
    border: 1px solid rgba(0, 229, 255, 0.08);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(10, 17, 40, 0.05);
}

.faq-item:hover {
    border-color: rgba(0, 229, 255, 0.3);
}

.faq-question {
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 14.5px;
    font-weight: 600;
    color: #F8FAFC;
    margin: 0;
    padding-right: 15px;
    transition: color 0.3s ease;
}

.faq-icon {
    position: relative;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--cv-cyan, #00E5FF);
    transition: all 0.3s ease;
}

.faq-icon::before { top: 6px; left: 0; width: 14px; height: 1.5px; }
.faq-icon::after { top: 0; left: 6px; width: 1.5px; height: 14px; }

.faq-answer {
    max-height: 0;
    opacity: 0;
    padding: 0 20px;
    transition: all 0.4s ease;
}

.faq-answer p {
    font-size: 13.5px;
    color: #94A3B8;
    line-height: 1.6;
    margin: 0;
    padding-bottom: 16px;
}

.faq-item.active {
    background: linear-gradient(145deg, #0C1530, #131C33);
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: 0 10px 25px rgba(0, 229, 255, 0.05);
}

.faq-item.active .faq-question h3 {
    color: #FFFFFF;
}

.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    opacity: 1;
}

@media (max-width: 768px) {
    .faq-section { padding: 70px 20px; }
    .faq-header { margin-bottom: 40px; }

    .faq-title { font-size: 34px; letter-spacing: -1px; }

    .faq-question { padding: 14px 16px; }
    .faq-question h3 { font-size: 14px; }
    .faq-answer { padding: 0 16px; }
    .faq-answer p { font-size: 13px; padding-bottom: 16px; }
}

/* ====================================================
   SEÇÃO 7: FORMULÁRIO DE CONTATO + RODAPÉ + WHATSAPP
   ==================================================== */
.contact-section {
    background-color: var(--cv-navy, #0A1128);
    padding: 120px 5%;
    font-family: 'Outfit', sans-serif;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -20%; left: -10%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.contact-container {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-badge {
    display: inline-block;
    background: transparent;
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 6px;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    color: var(--cv-cyan, #00E5FF);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: max-content;
}

.contact-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: #FFFFFF;
    margin: 0 0 20px 0;
}

.contact-title .c-cyan { color: var(--cv-cyan, #00E5FF); }

.contact-subtitle {
    font-size: 16px;
    color: #94A3B8;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 500px;
}

.contact-form-wrapper {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.cv-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 4px; }

.form-group label {
    font-size: 12px; font-weight: 600; color: #CBD5E1; letter-spacing: 0.5px;
}

.cv-form input,
.cv-form select,
.cv-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
    padding: 8px 0;
    transition: all 0.3s ease;
    outline: none;
}

.cv-form select { appearance: none; cursor: pointer; }
.cv-form select option { background: var(--cv-navy, #0A1128); color: #FFF; }
.cv-form textarea { resize: none; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 8px; padding: 12px; margin-top: 2px; }

.cv-form input:focus, .cv-form select:focus, .cv-form textarea:focus {
    border-color: var(--cv-cyan, #00E5FF);
    box-shadow: 0 10px 20px -10px rgba(0, 229, 255, 0.1);
}

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

.cv-btn-submit {
    margin-top: 6px;
    background: var(--cv-cyan, #00E5FF);
    color: var(--cv-navy, #0A1128);
    border: none;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 229, 255, 0.2);
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cv-btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 229, 255, 0.4);
    background: #FFFFFF !important;
    color: #0A1128 !important;
}

.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.3), transparent);
    margin: 0;
}

.cv-footer {
    background-color: var(--cv-navy, #0A1128);
    padding: 60px 5% 30px;
    font-family: 'Outfit', sans-serif;
    color: #94A3B8;
}

.footer-container {
    max-width: 1150px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    max-width: 100px !important;
    height: auto !important;
    filter: brightness(0) invert(1) !important;
    display: block !important;
    margin-bottom: 16px !important;
}

.footer-brand p { font-size: 14.5px; line-height: 1.7; margin: 0; }

.footer-links h4, .footer-contact h4 {
    color: #FFFFFF; font-size: 16px; font-weight: 700; margin: 0 0 24px 0;
}

.footer-links ul {
    list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px;
}

.footer-links a {
    color: #94A3B8; text-decoration: none; font-size: 14.5px; transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--cv-cyan, #00E5FF); }

.footer-contact p {
    font-size: 14px;
    margin: 0 0 12px 0;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact p svg {
    flex-shrink: 0;
    color: #94A3B8;
}

.company-legal-info {
    margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.company-legal-info strong { color: #F8FAFC; font-weight: 600; font-size: 13px; display: block; margin-bottom: 4px; }
.company-legal-info span { display: block; font-size: 12px; color: #64748B; line-height: 1.5; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #64748B;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: #64748B; text-decoration: none; transition: color 0.3s ease; }
.footer-bottom-links a:hover { color: #FFFFFF; }

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 992px) {
    .contact-container { grid-template-columns: 1fr; gap: 50px; }
    .contact-form-wrapper { padding: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .contact-section { padding: 60px 20px; }
    .contact-container { gap: 30px; }
    .contact-info { align-items: center; text-align: center; margin-bottom: 0; }
    .contact-title { font-size: 34px; letter-spacing: -1px; margin-bottom: 16px; text-align: center; }
    .contact-subtitle { font-size: 14.5px; text-align: center; padding: 0 10px; margin-bottom: 0; }

    .contact-form-wrapper { padding: 24px 20px; border-radius: 16px; }
    .cv-form { gap: 12px; }

    .cv-form input, .cv-form select, .cv-form textarea {
        font-size: 16px !important;
        padding: 6px 0;
    }
    .cv-btn-submit { padding: 12px 20px; font-size: 14px; }

    .cv-footer { padding: 60px 20px 30px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 20px; margin-bottom: 40px; }
    .footer-brand { grid-column: 1 / -1; }

    .footer-logo { max-width: 80px !important; margin: 0 0 16px 0 !important; }
    .footer-brand p { font-size: 13.5px; text-align: left; }

    .footer-links h4, .footer-contact h4 { font-size: 15px; margin-bottom: 16px; text-align: left; }
    .footer-links ul { gap: 12px; align-items: flex-start; }
    .footer-links a { font-size: 14px; }

    .footer-contact { grid-column: 1 / -1; }
    .footer-contact p { font-size: 13.5px; justify-content: flex-start; text-align: left; }
    .company-legal-info { text-align: left; }

    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}
