/* ============================================================
   Página /contato — Sideris
   Mesma identidade visual da Landing (gradient #1e3a8a → #594ae2)
   ============================================================ */

/* ───────── Reset leve + base ───────── */
.contato-nav,
.contato-hero,
.contato-perfil,
.contato-diferenciais,
.contato-form-section,
.contato-footer {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #1f2937;
    box-sizing: border-box;
}

.contato-nav *,
.contato-hero *,
.contato-perfil *,
.contato-diferenciais *,
.contato-form-section *,
.contato-footer * {
    box-sizing: border-box;
}

.section-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ───────── NAVBAR ───────── */
.contato-nav {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

.contato-nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contato-nav .brand {
    font-size: 20px;
    font-weight: 700;
    color: #1e3a8a;
    text-decoration: none;
}

.contato-nav .nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.contato-nav .nav-links a {
    color: #4b5563;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.15s;
}

.contato-nav .nav-links a:hover {
    color: #594ae2;
}

.contato-nav .nav-link-active {
    color: #594ae2 !important;
    font-weight: 600 !important;
}

.contato-nav .nav-link-login {
    color: #594ae2 !important;
}

.contato-nav .nav-link-cta {
    background: #594ae2;
    color: #ffffff !important;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600 !important;
    transition: background 0.15s;
}

.contato-nav .nav-link-cta:hover {
    background: #4a3fc4;
    color: #ffffff !important;
}

/* ───────── HERO ───────── */
.contato-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #594ae2 100%);
    color: #ffffff;
    padding: 80px 0 90px;
    position: relative;
    overflow: hidden;
}

.contato-hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contato-hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.contato-hero-text {
    max-width: 760px;
}

.contato-hero-eyebrow {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #dbeafe;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-bottom: 18px;
    backdrop-filter: blur(4px);
}

.contato-hero h1 {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 700;
    margin: 0 0 20px;
    letter-spacing: -0.5px;
}

.hero-highlight {
    color: #fbbf24;
}

.contato-hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #dbeafe;
    margin: 0 0 36px;
    max-width: 640px;
}

.contato-hero-stats {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-item strong {
    font-size: 32px;
    font-weight: 700;
    color: #fbbf24;
    line-height: 1;
}

.stat-item span {
    font-size: 13px;
    color: #dbeafe;
}

/* ───────── PERFIL ───────── */
.contato-perfil {
    padding: 80px 0;
    background: #ffffff;
}

.perfil-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 56px;
    align-items: start;
}

.perfil-foto-col {
    text-align: center;
}

.perfil-foto-wrap {
    width: 280px;
    height: 280px;
    margin: 0 auto 18px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(89, 74, 226, 0.25);
    border: 6px solid #ffffff;
    position: relative;
    background: linear-gradient(135deg, #1e3a8a, #594ae2);
}

.perfil-foto-wrap::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    padding: 6px;
    background: linear-gradient(135deg, #1e3a8a, #594ae2);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

.perfil-foto {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.perfil-badges {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.badge-mtac {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #fcd34d;
}

.perfil-idiomas {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.lang-chip {
    background: #f3f4f6;
    color: #374151;
    padding: 5px 11px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #e5e7eb;
    cursor: help;
}

.perfil-eyebrow {
    display: inline-block;
    color: #594ae2;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}

.perfil-texto-col h2 {
    font-size: 38px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 6px;
    letter-spacing: -0.5px;
}

.perfil-cargo {
    font-size: 16px;
    color: #6b7280;
    margin: 0 0 24px;
    font-weight: 500;
}

.perfil-bio {
    font-size: 15.5px;
    line-height: 1.75;
    color: #374151;
    margin: 0 0 16px;
}

.perfil-bio strong {
    color: #111827;
    font-weight: 600;
}

.perfil-redes {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.rede-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
}

.rede-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.rede-linkedin {
    background: #0a66c2;
    color: #ffffff;
}

.rede-youtube {
    background: #ff0000;
    color: #ffffff;
}

/* ───────── DIFERENCIAIS ───────── */
.contato-diferenciais {
    padding: 70px 0;
    background: #f8fafc;
}

.contato-diferenciais h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 10px;
    letter-spacing: -0.3px;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #6b7280;
    margin: 0 0 48px;
}

.dif-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.dif-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 28px 24px;
    border: 1px solid #e5e7eb;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.dif-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(89, 74, 226, 0.12);
    border-color: #c7d2fe;
}

.dif-icon {
    font-size: 36px;
    margin-bottom: 14px;
    line-height: 1;
}

.dif-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 10px;
}

.dif-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

/* ───────── FORMULÁRIO ───────── */
.contato-form-section {
    padding: 80px 0;
    background: #ffffff;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 56px;
    align-items: start;
}

.form-info-col h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 16px;
    letter-spacing: -0.3px;
}

.form-info-col > p {
    font-size: 16px;
    line-height: 1.65;
    color: #4b5563;
    margin: 0 0 36px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid #f3f4f6;
}

.info-item:last-child {
    border-bottom: 1px solid #f3f4f6;
}

.info-icon {
    font-size: 22px;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef2ff;
    border-radius: 8px;
}

.info-label {
    font-size: 12px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 2px;
}

.info-value {
    font-size: 15px;
    color: #111827;
    font-weight: 500;
}

.form-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 36px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.req {
    color: #dc2626;
}

.form-control {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14.5px;
    font-family: inherit;
    background: #ffffff;
    color: #111827;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.form-control:focus {
    outline: none;
    border-color: #594ae2;
    box-shadow: 0 0 0 3px rgba(89, 74, 226, 0.15);
}

.form-textarea {
    resize: vertical;
    min-height: 130px;
    font-family: inherit;
}

.field-error {
    display: block;
    color: #dc2626;
    font-size: 12px;
    margin-top: 4px;
}

.form-honeypot {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.btn-form-submit {
    width: 100%;
    padding: 13px 20px;
    background: linear-gradient(135deg, #594ae2 0%, #4a3fc4 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.1s, box-shadow 0.15s;
    margin-top: 8px;
}

.btn-form-submit:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(89, 74, 226, 0.35);
}

.btn-form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-privacidade {
    text-align: center;
    color: #9ca3af;
    font-size: 12px;
    margin: 14px 0 0;
}

/* ───────── Tela de sucesso ───────── */
.form-sucesso {
    text-align: center;
    padding: 30px 12px;
}

.form-sucesso-icone {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    background: #d1fae5;
    color: #047857;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
}

.form-sucesso h3 {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px;
}

.form-sucesso p {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 24px;
}

.btn-link-secundario {
    background: transparent;
    border: 1px solid #d1d5db;
    color: #374151;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s;
}

.btn-link-secundario:hover {
    background: #f9fafb;
}

/* ───────── FOOTER ───────── */
.contato-footer {
    background: #111827;
    color: #9ca3af;
    padding: 36px 0 28px;
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-brand {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.15s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-copy {
    font-size: 12px;
    color: #6b7280;
    margin-top: 6px;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 960px) {
    .perfil-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }

    .perfil-texto-col {
        text-align: left;
    }

    .perfil-redes {
        justify-content: flex-start;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

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

@media (max-width: 640px) {
    .contato-nav .nav-links {
        gap: 12px;
    }

    .contato-nav .nav-links a:not(.nav-link-cta):not(.nav-link-login):not(.nav-link-active) {
        display: none;
    }

    .contato-hero {
        padding: 60px 0 70px;
    }

    .contato-hero h1 {
        font-size: 30px;
    }

    .contato-hero-subtitle {
        font-size: 16px;
    }

    .contato-hero-stats {
        gap: 24px;
    }

    .stat-item strong {
        font-size: 26px;
    }

    .perfil-foto-wrap {
        width: 220px;
        height: 220px;
    }

    .perfil-texto-col h2 {
        font-size: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-card {
        padding: 24px 20px;
    }

    .dif-grid {
        grid-template-columns: 1fr;
    }

    .contato-perfil,
    .contato-diferenciais,
    .contato-form-section {
        padding: 50px 0;
    }
}

@media (max-width: 380px) {
    .contato-hero h1 {
        font-size: 26px;
    }

    .perfil-redes {
        flex-direction: column;
    }

    .rede-btn {
        justify-content: center;
    }
}
