/* ========================================
   INDEX.CSS — CONTEÚDO DA PÁGINA PRINCIPAL
   CoudFy — Digital Solutions
   ======================================== */

/* ========================================
   01 — HERO SECTION
   ======================================== */
.hero-section {
    min-height: 100vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    background: var(--color-black);
    position: relative;
    padding: 80px 20px;
    width: 100%; max-width: 100vw;
    overflow: hidden;
}

.hero-content-mobile {
    display: block; text-align: center;
    padding: 0 30px;
    max-width: 800px; margin: 50px auto 60px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 2.5s;
}

.hero-content-mobile h1 {
    font-size: 42px; font-weight: 700;
    margin-bottom: 25px; line-height: 1.3;
    color: var(--color-white);
}

.hero-content-mobile h2 {
    font-size: 1.3rem; color: #c9a961;
    margin-top: 10px; font-weight: 600;
}

.hero-content-mobile p {
    font-size: 18px; color: var(--color-gray-600);
    line-height: 1.7; margin-bottom: 35px;
}

.cta-button {
    background: linear-gradient(135deg, var(--color-orange), var(--color-orange-dark));
    color: var(--color-white); border: none;
    padding: 18px 50px; border-radius: 50px;
    font-size: 17px; font-weight: 700; cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(59,130,246,0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59,130,246,0.6);
    background: linear-gradient(135deg, var(--color-orange-light), var(--color-orange));
}

.cta-button:active { transform: translateY(-1px); }

/* Seta subida um pouco — bottom maior */
.scroll-arrow {
    position: absolute;
    bottom: 90px; /* ← era 50px, subiu */
    left: 50%;
    transform: translateX(-50%);
    width: 50px; height: 50px;
    background: var(--color-dark);
    border: 2px solid var(--color-orange);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(59,130,246,0.3);
    transition: opacity 0.5s ease, transform 0.3s ease;
    opacity: 0; will-change: opacity;
}

.scroll-arrow.visible { opacity: 1; animation: bounce 2s infinite; }

.scroll-arrow:hover {
    transform: translateX(-50%) scale(1.1);
    background: var(--color-orange);
}

.scroll-arrow i { font-size: 24px; color: var(--color-white); }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(-15px); }
}

/* ========================================
   02 — BIO SECTION — REDESENHADA
   ======================================== */
.bio-section {
    background: var(--color-black);
    padding: 80px 20px;
    position: relative; overflow: hidden;
    width: 100%; max-width: 100vw;
}

.bio-section::before {
    content: ''; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 900px; height: 900px;
    background: radial-gradient(circle, rgba(59,130,246,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.bio-container {
    max-width: 1400px; margin: 0 auto;
    padding: 60px 35px; position: relative;
    opacity: 0; transform: translateY(60px);
    transition: all 1.2s cubic-bezier(0.16,1,0.3,1);
}

.bio-container.visible { opacity: 1; transform: translateY(0); }

.bio-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px; align-items: start;
}

/* LADO ESQUERDO — Timeline standalone */
.bio-image-side {
    position: sticky; top: 120px;
    opacity: 0; transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.16,1,0.3,1);
}

.bio-image-side.visible { opacity: 1; transform: translateX(0); }

.bio-timeline-standalone {
    padding-right: 30px;
}

/* LADO DIREITO — Formulário */
.bio-text-side {
    opacity: 0; transform: translateX(50px);
    transition: all 1s cubic-bezier(0.16,1,0.3,1);
}

.bio-text-side.visible { opacity: 1; transform: translateX(0); transition-delay: 0.2s; }

.bio-timeline {
    opacity: 0; transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16,1,0.3,1);
    margin-bottom: 40px;
}

.bio-timeline.visible { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }

.bio-cta-section {
    opacity: 0; transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16,1,0.3,1);
    display: flex; gap: 15px; flex-wrap: wrap;
}

.bio-cta-section.visible { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }

/* — Shared Bio tokens — */
.bio-badge {
    display: inline-block;
    background: var(--color-dark); color: var(--color-white);
    padding: 10px 25px; border-radius: 50px;
    font-size: 14px; margin-bottom: 20px;
    border: 2px solid var(--color-orange);
}

.bio-title { font-size: 38px; color: var(--color-white); font-weight: 700; line-height: 1.3; margin-bottom: 20px; }

.bio-highlight {
    background: linear-gradient(135deg, var(--color-orange), var(--color-orange-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.bio-description { font-size: 15px; color: var(--color-gray-600); line-height: 1.8; margin-bottom: 40px; }

/* Timeline */
.bio-timeline-title { font-size: 22px; color: var(--color-white); font-weight: 700; margin-bottom: 28px; }

.bio-timeline-item {
    position: relative;
    padding-left: 35px; padding-bottom: 35px;
    border-left: 2px solid var(--color-gray-900);
}

.bio-timeline-item:last-child { border-left: 2px solid transparent; padding-bottom: 0; }

.bio-timeline-dot {
    position: absolute; left: -8px; top: 0;
    width: 14px; height: 14px;
    background: var(--color-orange); border-radius: 50%;
    box-shadow: 0 0 0 4px var(--color-black), 0 0 0 6px var(--color-orange);
}

.bio-timeline-item:hover .bio-timeline-content { transform: translateX(5px); }
.bio-timeline-content { transition: transform 0.3s ease; }

.bio-timeline-year {
    display: inline-block; font-size: 12px;
    color: var(--color-orange); font-weight: 600;
    margin-bottom: 8px; padding: 4px 12px;
    background: rgba(59,130,246,0.1); border-radius: 20px;
}

.bio-timeline-content h4 { font-size: 17px; color: var(--color-white); font-weight: 700; margin-bottom: 8px; }
.bio-timeline-content p  { font-size: 14px; color: var(--color-gray-600); line-height: 1.6; }

/* CTA Button */
.bio-cta-button {
    padding: 16px 35px; border-radius: 50px;
    font-size: 16px; font-weight: 700; cursor: pointer;
    transition: all 0.3s ease;
    display: flex; align-items: center; gap: 10px; border: none;
}

.bio-cta-button.primary {
    background: linear-gradient(135deg, var(--color-orange), var(--color-orange-dark));
    color: var(--color-white);
    box-shadow: 0 10px 30px rgba(59,130,246,0.3);
}

.bio-cta-button.primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(59,130,246,0.5); }
.bio-cta-button i { font-size: 18px; }

/* ========================================
   03 — FORMULÁRIO DE CONTATO
   ======================================== */
.contact-form-wrapper {
    background: rgba(255,255,255,0.02);
    border: 2px solid var(--color-gray-900);
    border-radius: 24px;
    padding: 40px 35px;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--color-orange-dark), var(--color-orange), var(--color-orange-light));
}

.contact-form-subtitle {
    font-size: 14px; color: var(--color-gray-600);
    line-height: 1.6; margin-bottom: 32px;
}

.contact-form { display: flex; flex-direction: column; gap: 18px; }

.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cf-group { display: flex; flex-direction: column; gap: 8px; }
.cf-full { grid-column: 1 / -1; }

.cf-label {
    font-size: 12px; font-weight: 700;
    color: var(--color-gray-500); text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex; align-items: center; gap: 7px;
}

.cf-label i { color: var(--color-orange); font-size: 13px; }

.cf-input,
.cf-select {
    width: 100%; padding: 14px 16px;
    background: rgba(255,255,255,0.04);
    border: 2px solid var(--color-gray-800);
    border-radius: 12px;
    color: var(--color-white);
    font-size: 14px; font-weight: 500;
    font-family: inherit;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
}

.cf-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%233b82f6' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.cf-select option {
    background: var(--color-dark);
    color: var(--color-white);
}

.cf-input:focus,
.cf-select:focus {
    outline: none;
    border-color: var(--color-orange);
    background: rgba(59,130,246,0.06);
    box-shadow: 0 0 0 4px rgba(59,130,246,0.12);
}

.cf-input::placeholder { color: var(--color-gray-700); }

.cf-submit {
    margin-top: 8px;
    width: 100%; padding: 18px 30px;
    background: linear-gradient(135deg, var(--color-orange), var(--color-orange-dark));
    color: var(--color-white); border: none; border-radius: 14px;
    font-size: 16px; font-weight: 700; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(59,130,246,0.35);
    font-family: inherit;
    letter-spacing: 0.3px;
}

.cf-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(59,130,246,0.55);
}

.cf-submit .cf-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.cf-submit:hover .cf-arrow { transform: translateX(5px); }

/* ========================================
   04 — SOLUÇÕES SECTION (era Skills)
   ======================================== */
.skills-section {
    padding: 80px 20px;
    background: var(--color-black);
    position: relative; width: 100%; max-width: 100vw; overflow: hidden;
}

.skills-section::before {
    content: ''; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 900px; height: 900px;
    background: radial-gradient(circle, rgba(59,130,246,0.07) 0%, transparent 70%);
    pointer-events: none; z-index: 0;
}

.skills-container { max-width: 1400px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }

.skills-header {
    text-align: center; margin-bottom: 100px;
    opacity: 0; transform: translateY(80px) scale(0.95);
    transition: all 1.2s cubic-bezier(0.16,1,0.3,1);
}

.skills-header.visible { opacity: 1; transform: translateY(0) scale(1); }

.skills-badge {
    display: inline-block; background: var(--color-dark); color: var(--color-white);
    padding: 10px 25px; border-radius: 50px;
    font-size: 14px; margin-bottom: 20px;
    border: 2px solid var(--color-orange); font-weight: 600;
}

.skills-main-title { font-size: 48px; color: var(--color-white); font-weight: 700; margin-bottom: 15px; line-height: 1.2; }

.skills-highlight {
    background: linear-gradient(135deg, var(--color-orange), var(--color-orange-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.skills-subtitle { font-size: 18px; color: var(--color-gray-600); max-width: 700px; margin: 0 auto; line-height: 1.6; }

.skill-block {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center; margin-bottom: 150px;
    opacity: 0; transform: translateY(60px);
    transition: all 1.2s cubic-bezier(0.16,1,0.3,1);
}

.skill-block.visible { opacity: 1; transform: translateY(0); }
.skill-block.reverse .skill-block-visual { order: -1; }
.skill-block-content { padding: 20px 0; }

.skill-block-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(59,130,246,0.1); color: var(--color-orange);
    padding: 10px 20px; border-radius: 50px;
    font-size: 13px; font-weight: 700; margin-bottom: 25px;
    border: 2px solid rgba(59,130,246,0.3);
}

.skill-block-badge i { font-size: 16px; }
.skill-block-title { font-size: 34px; color: var(--color-white); font-weight: 700; margin-bottom: 20px; line-height: 1.3; }
.skill-block-description { font-size: 16px; color: var(--color-gray-600); line-height: 1.8; margin-bottom: 40px; }

.skill-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 30px; }

.skill-list-item {
    display: flex; align-items: center; gap: 15px;
    padding: 16px; background: rgba(255,255,255,0.02);
    border: 2px solid var(--color-gray-900); border-radius: 15px; transition: all 0.3s ease;
}

.skill-list-item:hover { background: rgba(59,130,246,0.05); border-color: var(--color-orange); transform: translateX(5px); }

.skill-list-icon {
    width: 45px; height: 45px; background: var(--color-dark);
    border: 2px solid var(--color-gray-800); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: var(--color-orange); flex-shrink: 0; transition: all 0.3s ease;
}

.skill-list-item:hover .skill-list-icon { background: var(--color-orange); color: var(--color-white); border-color: var(--color-orange); transform: scale(1.1); }

.skill-list-info { flex: 1; }
.skill-list-name { display: block; font-size: 14px; font-weight: 600; color: var(--color-white); margin-bottom: 8px; }

.skill-list-bar-wrapper { height: 6px; background: rgba(255,255,255,0.05); border-radius: 10px; overflow: hidden; }

.skill-list-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--color-orange-dark), var(--color-orange), var(--color-orange-light));
    border-radius: 10px; width: 0;
    transition: width 1.5s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 0 10px rgba(59,130,246,0.5);
}

.skill-block.visible .skill-list-bar { transition-delay: 0.5s; }

.skill-list-percent { font-size: 13px; font-weight: 700; color: var(--color-orange); min-width: 40px; text-align: right; }

.skill-block-tags { display: flex; flex-wrap: wrap; gap: 10px; }

.skill-tag {
    padding: 8px 18px; background: var(--color-dark);
    border: 2px solid var(--color-gray-800); border-radius: 20px;
    font-size: 13px; color: var(--color-white); font-weight: 600; transition: all 0.3s ease;
}

.skill-tag:hover { background: var(--color-orange); border-color: var(--color-orange); transform: translateY(-2px); }

/* ========================================
   05 — VISUAL CARDS DOS SEGMENTOS
   ======================================== */
.skill-block-visual { position: relative; }

.skill-visual-card {
    background: var(--color-gray-950); border: 2px solid var(--color-gray-800);
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    position: relative; transition: all 0.4s ease;
}

.skill-visual-card:hover { transform: translateY(-10px); box-shadow: 0 30px 80px rgba(0,0,0,0.7); border-color: var(--color-orange); }
.skill-visual-card.dark { background: linear-gradient(135deg, #0d1220 0%, #050811 100%); }

.skill-visual-header {
    padding: 15px 20px; background: var(--color-dark);
    border-bottom: 2px solid var(--color-gray-800);
    display: flex; align-items: center; gap: 15px;
}

.skill-visual-dots { display: flex; gap: 8px; }
.skill-visual-dots span { width: 12px; height: 12px; border-radius: 50%; }
.skill-visual-dots span:nth-child(1) { background: #ff5f56; }
.skill-visual-dots span:nth-child(2) { background: #ffbd2e; }
.skill-visual-dots span:nth-child(3) { background: #27c93f; }

.skill-visual-title { font-size: 12px; color: var(--color-gray-500); font-weight: 600; }

.skill-visual-glow {
    position: absolute; bottom: -50%; left: 50%;
    transform: translateX(-50%);
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(59,130,246,0.3) 0%, transparent 70%);
    pointer-events: none; animation: glow-pulse 3s ease-in-out infinite;
}

.skill-visual-glow.orange { background: radial-gradient(circle, rgba(59,130,246,0.35) 0%, transparent 70%); }

@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    50%       { opacity: 0.8; transform: translateX(-50%) scale(1.1); }
}

/* ── DASHBOARD SAAS ── */
.coudfy-dash-body { padding: 25px 20px 20px; }

.cd-metrics-row {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 12px; margin-bottom: 22px;
}

.cd-metric {
    background: rgba(59,130,246,0.06);
    border: 1px solid rgba(59,130,246,0.2);
    border-radius: 12px; padding: 14px 10px;
    text-align: center; transition: all 0.3s ease;
}

.cd-metric:hover { background: rgba(59,130,246,0.12); transform: translateY(-3px); }

.cd-metric-icon { display: block; font-size: 18px; color: var(--color-orange); margin-bottom: 6px; }
.cd-metric-val  { display: block; font-size: 18px; font-weight: 800; color: var(--color-white); margin-bottom: 3px; }
.cd-metric-label { display: block; font-size: 10px; color: var(--color-gray-600); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

.cd-chart-area { margin-bottom: 18px; }

.cd-bar-chart {
    display: flex; align-items: flex-end; gap: 6px;
    height: 80px; padding: 0 4px; margin-bottom: 6px;
}

.cd-bar {
    flex: 1; background: rgba(59,130,246,0.25);
    border-radius: 6px 6px 0 0;
    height: var(--h, 50%);
    transition: all 0.3s ease; position: relative;
}

.cd-bar:hover { background: rgba(59,130,246,0.5); }
.cd-bar.active { background: var(--color-orange); box-shadow: 0 0 15px rgba(59,130,246,0.6); }

.cd-chart-labels {
    display: flex; gap: 6px; padding: 0 4px;
}

.cd-chart-labels span {
    flex: 1; text-align: center; font-size: 9px;
    color: var(--color-gray-700); font-weight: 600;
}

.cd-status-row {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 14px; border-top: 1px solid var(--color-gray-900);
}

.cd-status-online {
    display: flex; align-items: center; gap: 6px;
    font-size: 11px; color: var(--color-gray-500); font-weight: 600;
}

.cd-dot {
    display: inline-block; width: 7px; height: 7px;
    background: #22c55e; border-radius: 50%;
    box-shadow: 0 0 6px #22c55e;
    animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.cd-clients-badge {
    font-size: 11px; font-weight: 700; color: var(--color-orange);
    background: rgba(59,130,246,0.1); padding: 4px 12px; border-radius: 20px;
    border: 1px solid rgba(59,130,246,0.3);
}

/* ── ADS / TRÁFEGO PAGO ── */
.coudfy-ads-body { padding: 22px 20px 18px; }

.ca-kpi-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 10px; margin-bottom: 22px;
}

.ca-kpi {
    border-radius: 12px; padding: 14px 12px; text-align: center;
    border: 1px solid;
}

.ca-kpi.green  { background: rgba(34,197,94,0.08);  border-color: rgba(34,197,94,0.25); }
.ca-kpi.blue   { background: rgba(59,130,246,0.08); border-color: rgba(59,130,246,0.25); }
.ca-kpi.orange { background: rgba(251,146,60,0.08); border-color: rgba(251,146,60,0.25); }
.ca-kpi.purple { background: rgba(168,85,247,0.08); border-color: rgba(168,85,247,0.25); }

.ca-kpi-val   { display: block; font-size: 20px; font-weight: 800; color: var(--color-white); margin-bottom: 3px; }
.ca-kpi-label { display: block; font-size: 10px; color: var(--color-gray-600); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

.ca-platforms { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }

.ca-plat-item { display: flex; align-items: center; gap: 10px; }

.ca-plat-info { display: flex; align-items: center; gap: 7px; min-width: 100px; font-size: 12px; color: var(--color-gray-500); font-weight: 600; }

.ca-plat-icon { font-size: 14px; }
.ca-plat-icon.google { color: #ea4335; }
.ca-plat-icon.meta   { color: #1877f2; }
.ca-plat-icon.tiktok { color: #ff0050; }

.ca-plat-bar {
    flex: 1; height: 6px; background: rgba(255,255,255,0.06);
    border-radius: 10px; overflow: hidden;
}

.ca-plat-bar div {
    height: 100%;
    background: linear-gradient(90deg, var(--color-orange-dark), var(--color-orange));
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(59,130,246,0.4);
}

.ca-plat-pct { font-size: 11px; font-weight: 700; color: var(--color-orange); min-width: 30px; text-align: right; }

.ca-roi-badge {
    display: flex; align-items: center; gap: 8px;
    background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.25);
    border-radius: 10px; padding: 10px 14px;
    font-size: 11px; font-weight: 700; color: #22c55e;
}

.ca-roi-badge i { font-size: 14px; }

/* ── CRIATIVO / VIDEO ── */
.coudfy-video-body { padding: 22px 20px 18px; }

.cv-video-thumb {
    background: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(96,165,250,0.06));
    border: 2px solid rgba(59,130,246,0.2);
    border-radius: 14px; padding: 22px;
    display: flex; align-items: center; gap: 18px;
    margin-bottom: 18px; cursor: pointer; transition: all 0.3s ease;
}

.cv-video-thumb:hover { background: rgba(59,130,246,0.16); transform: scale(1.02); }

.cv-play-btn {
    width: 52px; height: 52px; flex-shrink: 0;
    background: var(--color-orange); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--color-white);
    box-shadow: 0 0 20px rgba(59,130,246,0.5);
    animation: play-pulse 2.5s ease-in-out infinite;
}

@keyframes play-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(59,130,246,0.5); transform: scale(1); }
    50%       { box-shadow: 0 0 35px rgba(59,130,246,0.8); transform: scale(1.05); }
}

.cv-video-info { display: flex; flex-direction: column; gap: 6px; }
.cv-video-type { font-size: 13px; color: var(--color-white); font-weight: 600; }
.cv-video-tag  { font-size: 11px; color: var(--color-orange); font-weight: 700; background: rgba(59,130,246,0.1); padding: 3px 10px; border-radius: 20px; width: fit-content; }

.cv-video-stats {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 10px; margin-bottom: 16px;
}

.cv-stat {
    text-align: center; padding: 12px 8px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--color-gray-900); border-radius: 10px;
    transition: all 0.3s ease;
}

.cv-stat:hover { background: rgba(59,130,246,0.06); border-color: rgba(59,130,246,0.3); }

.cv-stat i    { display: block; font-size: 14px; color: var(--color-orange); margin-bottom: 5px; }
.cv-stat span { display: block; font-size: 15px; font-weight: 800; color: var(--color-white); margin-bottom: 3px; }
.cv-stat small { font-size: 9px; color: var(--color-gray-600); text-transform: uppercase; letter-spacing: 0.4px; }

.cv-content-tags {
    display: flex; flex-wrap: wrap; gap: 8px;
}

.cv-tag {
    padding: 6px 14px; background: var(--color-dark);
    border: 1px solid var(--color-gray-800); border-radius: 20px;
    font-size: 12px; color: var(--color-white); font-weight: 600;
    transition: all 0.3s ease;
}

.cv-tag:hover { background: rgba(59,130,246,0.15); border-color: var(--color-orange); transform: translateY(-2px); }

/* ========================================
   06 — MENTORIA SECTION (REBRANDED)
   ======================================== */
.mentoria-section {
    padding: 120px 20px;
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-black) 85%, var(--color-dark) 100%);
    position: relative; overflow: hidden;
}

.mentoria-section::before {
    content: ''; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 1000px; height: 1000px;
    background: radial-gradient(circle, rgba(59,130,246,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.mentoria-container { max-width: 1400px; margin: 0 auto; position: relative; z-index: 1; }

.mentoria-header,
.benefit-item,
.faq-item {
    opacity: 0; transform: translateX(80px);
    transition: all 0.8s cubic-bezier(0.16,1,0.3,1);
}

.mentoria-header.visible,
.benefit-item.visible,
.faq-item.visible { opacity: 1; transform: translateX(0); }

.benefit-item:nth-child(1).visible { transition-delay: 0.1s; }
.benefit-item:nth-child(2).visible { transition-delay: 0.2s; }
.benefit-item:nth-child(3).visible { transition-delay: 0.3s; }
.benefit-item:nth-child(4).visible { transition-delay: 0.4s; }

.faq-item:nth-child(1).visible { transition-delay: 0.1s; }
.faq-item:nth-child(2).visible { transition-delay: 0.2s; }
.faq-item:nth-child(3).visible { transition-delay: 0.3s; }
.faq-item:nth-child(4).visible { transition-delay: 0.4s; }

.mentoria-header { text-align: center; margin-bottom: 80px; }

.mentoria-badge {
    display: inline-block; background: var(--color-dark); color: var(--color-white);
    padding: 10px 25px; border-radius: 50px;
    font-size: 14px; font-weight: 600; margin-bottom: 20px;
    border: 2px solid var(--color-orange);
}

.mentoria-title { font-size: 48px; color: var(--color-white); font-weight: 700; margin-bottom: 20px; line-height: 1.2; }

.mentoria-highlight {
    background: linear-gradient(135deg, var(--color-orange), var(--color-orange-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.mentoria-subtitle { font-size: 18px; color: var(--color-gray-600); max-width: 700px; margin: 0 auto; line-height: 1.8; }

.mentoria-benefits { text-align: center; margin-bottom: 100px; }
.benefits-title { font-size: 36px; color: var(--color-white); font-weight: 700; margin-bottom: 50px; }

.benefits-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; }

.benefit-item {
    background: rgba(255,255,255,0.02); border: 2px solid var(--color-gray-900);
    border-radius: 20px; padding: 35px 25px; transition: all 0.3s ease;
}

.benefit-item:hover { border-color: var(--color-orange); transform: translateY(-5px); box-shadow: 0 15px 35px rgba(59,130,246,0.2); }

.benefit-icon {
    width: 70px; height: 70px; background: var(--color-dark);
    border: 2px solid var(--color-orange); border-radius: 15px;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; color: var(--color-orange); margin: 0 auto 20px;
}

.benefit-item h4 { font-size: 18px; color: var(--color-white); font-weight: 700; margin-bottom: 10px; }
.benefit-item p  { font-size: 14px; color: var(--color-gray-600); line-height: 1.6; }

.mentoria-faq { max-width: 900px; margin: 0 auto; }
.faq-title { font-size: 36px; color: var(--color-white); font-weight: 700; text-align: center; margin-bottom: 40px; }

.faq-item {
    background: rgba(255,255,255,0.02); border: 2px solid var(--color-gray-900);
    border-radius: 15px; margin-bottom: 15px; overflow: hidden; transition: all 0.3s ease;
}

.faq-item:hover { border-color: var(--color-orange); }

.faq-question {
    padding: 20px 25px; display: flex; align-items: center; justify-content: space-between;
    cursor: pointer; color: var(--color-white); font-size: 16px; font-weight: 600; transition: all 0.3s ease;
}

.faq-question i { color: var(--color-orange); transition: transform 0.3s ease; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 25px 20px; color: var(--color-gray-600); font-size: 15px; line-height: 1.7; }

/* ========================================
   07 — FOOTER
   ======================================== */
.footer {
    background: var(--color-black); color: var(--color-white);
    padding: 80px 30px 30px;
    border-top: 1px solid var(--color-orange);
}

.footer-container { max-width: 1400px; margin: 0 auto; }

.footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px; margin-bottom: 60px;
}

.footer-column h3 { font-size: 22px; font-weight: 700; margin-bottom: 25px; color: var(--color-white); }

.footer-logo {
    width: 80px; height: 80px; background: transparent;
    border-radius: 0; display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; border: none;
}

.footer-logo img { width: 75px; height: 75px; object-fit: contain; }
.footer-description { font-size: 17px; color: var(--color-gray-500); line-height: 1.7; margin-bottom: 25px; }

.footer-social { display: flex; gap: 12px; }

.footer-social a {
    width: 52px; height: 52px; background: var(--color-dark); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--color-white); font-size: 22px; transition: all 0.3s ease;
    border: 2px solid var(--color-gray-800);
}

.footer-social a:hover { background: var(--color-orange); border-color: var(--color-orange); transform: translateY(-3px); }

.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 18px; }

.footer-column ul li a {
    color: var(--color-gray-500); text-decoration: none;
    font-size: 17px; transition: all 0.3s ease; display: inline-block;
}

.footer-column ul li a:hover { color: var(--color-orange); padding-left: 5px; }

.footer-contact li {
    display: flex; align-items: center; gap: 12px;
    color: var(--color-gray-500); font-size: 17px; margin-bottom: 18px;
}

.footer-contact li i { color: var(--color-orange); font-size: 20px; }

.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 30px; border-top: 1px solid var(--color-gray-900);
}

.footer-bottom p { color: var(--color-gray-500); font-size: 16px; }
.footer-links { display: flex; gap: 30px; }
.footer-links a { color: var(--color-gray-500); text-decoration: none; font-size: 16px; transition: all 0.3s ease; }
.footer-links a:hover { color: var(--color-orange); }

/* ========================================
   08 — MEDIA QUERIES
   ======================================== */
@media (max-width: 768px) {

    /* Loading */
    .loading-logo { width: 260px; height: 175px; }
    .loading-ring-wrapper { width: 340px; height: 340px; }
    .loading-ring-pulse { width: 340px; height: 340px; }
    .loading-ring-outer { width: 310px; height: 310px; }
    .loading-ring-inner { width: 275px; height: 275px; }
    .loading-logo-container { width: 280px; height: 190px; }
    .loading-brand-name { font-size: 28px; letter-spacing: 5px; }
    .loading-brand-tagline { font-size: 10px; letter-spacing: 3px; }
    .loading-bar-wrapper { width: 260px; bottom: 40px; }

    /* Hero */
    .hero-section { padding: 60px 20px 80px; min-height: 100vh; }
    .hero-content-mobile { width: 100%; max-width: 100%; padding: 0 20px; margin: 20px auto 60px; }
    .hero-content-mobile h1 { font-size: 28px; margin-bottom: 20px; word-wrap: break-word; }
    .hero-content-mobile p  { font-size: 16px; margin-bottom: 30px; word-wrap: break-word; }
    .cta-button    { padding: 16px 40px; font-size: 16px; width: auto; max-width: 100%; }
    .scroll-arrow  { bottom: 60px; width: 45px; height: 45px; }

    /* Bio */
    .bio-section   { padding: 60px 15px; }
    .bio-container { padding: 40px 20px; }
    .bio-content-wrapper { grid-template-columns: 1fr; gap: 50px; }

    .bio-image-side {
        position: relative !important; top: 0 !important;
    }

    .bio-timeline-standalone { padding-right: 0; }
    .bio-title { font-size: 26px; }
    .bio-description { font-size: 14px; }
    .bio-cta-section { flex-direction: column; }
    .bio-cta-button { width: 100%; justify-content: center; }

    /* Form */
    .contact-form-wrapper { padding: 28px 20px; }
    .cf-row { grid-template-columns: 1fr; }

    /* Skills/Soluções */
    .skills-section   { padding: 80px 15px; }
    .skills-container { padding: 0 15px; }
    .skills-header    { margin-bottom: 60px; }
    .skills-main-title { font-size: 30px; }
    .skills-subtitle  { font-size: 16px; }
    .skill-block { grid-template-columns: 1fr; gap: 40px; margin-bottom: 80px; }
    .skill-block.reverse .skill-block-visual { order: 0; }
    .skill-block-content { order: 1; }
    .skill-block-title { font-size: 26px; }
    .skill-block-description { font-size: 15px; margin-bottom: 30px; }
    .skill-list  { gap: 12px; margin-bottom: 22px; }
    .skill-list-item   { padding: 14px; }
    .skill-list-icon   { width: 40px; height: 40px; font-size: 17px; }
    .skill-list-name   { font-size: 13px; }
    .skill-block-visual { order: 0; width: 100%; }
    .skill-visual-card  { width: 100%; }
    .skill-block-tags   { gap: 8px; }
    .skill-tag          { padding: 6px 12px; font-size: 12px; }

    /* Dashboard visuals mobile */
    .cd-metrics-row   { gap: 8px; }
    .cd-metric        { padding: 10px 6px; }
    .cd-metric-val    { font-size: 15px; }
    .cd-bar-chart     { height: 60px; }
    .ca-kpi-grid      { gap: 8px; }
    .ca-kpi-val       { font-size: 16px; }

    /* Mentoria */
    .mentoria-section { padding: 80px 15px; }
    .mentoria-title   { font-size: 30px; }
    .benefits-grid { grid-template-columns: 1fr; gap: 20px; }

    /* Footer */
    .footer      { padding: 60px 20px 20px; width: 100%; }
    .footer-top  { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .footer-links  { flex-direction: column; gap: 15px; }

    /* Chatbot */
    .chatbot-button    { bottom: 20px; right: 20px; width: 55px; height: 55px; }
    .chatbot-container { width: 100%; height: 100%; bottom: 0; right: 0; border-radius: 0; max-height: 100vh; }
}

@media (max-width: 480px) {
    .cv-video-stats { grid-template-columns: repeat(3,1fr); gap: 6px; }
    .ca-plat-info   { min-width: 80px; }
}