/* =============================================================================
 * Talentos GenZ — estilos da landing (paleta + tipografia + seções).
 * Arquivo novo (não toca style.css compilado). Inter via Google Fonts.
 * ========================================================================== */

:root {
    --tlt-navy:        #0B2D6A;
    --tlt-navy-deep:   #061A4A;
    --tlt-navy-soft:   #0F377D;
    --tlt-orange:      #F5973F;
    --tlt-orange-deep: #E48529;
    --tlt-cream:       #FCF1DD;
    --tlt-cream-soft:  #FAF3E3;
    --tlt-pink:        #EC2A8F;
    --tlt-border:      #E5E7EB;
    --tlt-text:        #1A1F36;
    --tlt-text-soft:   #4B5666;
}

body, .tlt-body { font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif; color: var(--tlt-text); }

.tlt-tag {
    display: inline-block;
    color: var(--tlt-orange);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.tlt-h1 { font-size: clamp(2.5rem, 5.4vw, 5rem); font-weight: 700; line-height: 1.02; letter-spacing: -0.025em; }
.tlt-h2 { font-size: clamp(2rem, 3.6vw, 3.25rem); font-weight: 700; line-height: 1.1;  letter-spacing: -0.02em; color: var(--tlt-navy); }
.tlt-h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 700; line-height: 1.15; color: var(--tlt-navy); }
.tlt-lead { font-size: 1.0625rem; line-height: 1.55; color: var(--tlt-text-soft); }

.tlt-btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .85rem 1.6rem; border-radius: 999px;
    font-weight: 600; text-decoration: none; border: 0; cursor: pointer;
    transition: background .15s ease, color .15s ease, transform .15s ease;
}
.tlt-btn-white   { background: #fff; color: var(--tlt-navy); }
.tlt-btn-white:hover { background: var(--tlt-cream); }
.tlt-btn-navy    { background: var(--tlt-navy); color: #fff; }
.tlt-btn-navy:hover { background: var(--tlt-navy-soft); color: #fff; }
.tlt-btn-orange  { background: var(--tlt-orange); color: #fff; }
.tlt-btn-orange:hover { background: var(--tlt-orange-deep); color: #fff; }

/* ===== NAVBAR (fundo navy, elementos brancos) =========================== */
.tlt-navbar { background: var(--tlt-navy-deep); color: #fff; }

.tlt-navbar-top {
    background: rgba(0,0,0,.18);
    color: #fff;
    font-size: .82rem;
    padding: .55rem 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.tlt-navbar-top a { color: #fff; text-decoration: none; opacity: .9; display: inline-flex; align-items: center; gap: .4rem; }
.tlt-navbar-top a:hover { opacity: 1; }
.tlt-navbar-top-right { position: relative; padding-left: 1.2rem; }
.tlt-navbar-top-right::before { content: '|'; position: absolute; left: 0; top: 50%; transform: translateY(-50%); opacity: .35; }

/* Linha do logo (landing page — sem busca/menu/carrinho/conta) */
.tlt-navbar-brandbar { padding: 1.1rem 0; }
.tlt-navbar-brand { display: inline-flex; align-items: center; gap: .85rem; text-decoration: none; }
.tlt-navbar-logo { height: 38px; width: auto; display: block; }
.tlt-navbar-iso  { height: 46px; width: auto; display: block; }
@media (max-width: 575px) {
    .tlt-navbar-brandbar { padding: .85rem 0; }
    .tlt-navbar-logo { height: 32px; }
    .tlt-navbar-iso  { height: 40px; }
}

/* Strip colorida horizontal abaixo da navbar (cores da marca) */
.tlt-brand-strip {
    height: 6px;
    background: linear-gradient(90deg,
        #F5C30F 0%, #F5A14A 12%, #ED2B6E 22%, #C7236A 32%,
        #16356F 42%, #ED2B6E 52%, #16356F 62%, #ED2B6E 72%,
        #1F70D6 82%, #16356F 92%, #F5C30F 100%);
}

/* ===== HERO (banner1.png como background — foto+gradient já integrados) == */
.tlt-hero {
    position: relative;
    background-color: var(--tlt-navy-deep);
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    color: #fff;
    overflow: hidden;
    min-height: 640px;
}
/* Overlay sutil para garantir legibilidade do texto na esquerda */
.tlt-hero::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(11,26,74,.85) 0%, rgba(11,26,74,.5) 25%, rgba(11,26,74,.1) 45%, transparent 60%);
    pointer-events: none;
}
.tlt-hero .container { position: relative; z-index: 2; padding-block: 6rem; }
.tlt-hero-text { max-width: 560px; }
.tlt-hero-text .tlt-tag { color: var(--tlt-orange); }
.tlt-hero-text p { max-width: 44ch; color: rgba(255,255,255,.92); margin: 1.5rem 0 2.5rem; font-size: 1.05rem; line-height: 1.55; }
@media (max-width: 991px) {
    /* Mobile: só o texto sobre fundo navy — banner escondido */
    .tlt-hero {
        background-image: none !important;
        background-color: var(--tlt-navy-deep);
        min-height: 0;
    }
    .tlt-hero::before { display: none; }
    .tlt-hero .container { padding-block: 2.75rem 3rem; }
    .tlt-hero-text { max-width: none; }
    .tlt-hero-text .tlt-h1 { font-size: 2rem; }
    .tlt-hero-text p { font-size: 1rem; margin: 1.1rem 0 1.75rem; }
}

/* ===== SOMOS ============================================================= */
.tlt-somos { background: var(--tlt-cream-soft); padding-block: 6rem 5rem; }
.tlt-somos-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 992px) { .tlt-somos-grid { grid-template-columns: 1.05fr .95fr; column-gap: 4rem; } }
.tlt-somos-left, .tlt-somos-right { display: flex; flex-direction: column; }

.tlt-somos-titulo { color: var(--tlt-text); margin: 0; }
.tlt-somos-paragraphs { margin-top: 3.25rem; }
.tlt-somos-paragraphs p { color: var(--tlt-text-soft); margin-bottom: 1rem; line-height: 1.65; max-width: 46ch; }
.tlt-somos-paragraphs p:first-child { font-weight: 600; color: var(--tlt-text); }

.tlt-somos-destaque { display: flex; flex-direction: column; align-items: flex-start; gap: .9rem; padding-top: .35rem; }
.tlt-somos-destaque-icon { color: var(--tlt-orange); display: inline-flex; }
.tlt-somos-destaque-text {
    color: var(--tlt-navy); font-weight: 700; letter-spacing: .07em;
    text-transform: uppercase; font-size: .98rem; line-height: 1.5;
    margin: 0; max-width: 26ch;
}
.tlt-somos-destaque-line { width: 46px; height: 3px; background: var(--tlt-orange); border-radius: 2px; }

.tlt-somos-card { margin-top: 3.25rem; }
.tlt-somos-card img { width: 100%; height: auto; display: block; border-radius: 16px; }

/* ===== VIDA EN GENZ (vídeo placeholder com cantos arredondados) ========== */
.tlt-vida { position: relative; }
.tlt-vida-cover-wrap { background: linear-gradient(180deg, var(--tlt-cream-soft) 0 52%, #fff 52% 100%); }
.tlt-vida-cover { border-radius: 22px; overflow: hidden; line-height: 0; }
.tlt-vida-cover img { width: 100%; height: auto; display: block; }
.tlt-vida-meta { padding-block: 3rem 2.5rem; background: #fff; }
.tlt-vida-meta-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 992px) { .tlt-vida-meta-grid { grid-template-columns: 1.2fr .8fr; } }
.tlt-vida-titulo { color: var(--tlt-text); margin: 0; }
.tlt-vida-destaque { display: flex; flex-direction: column; align-items: flex-start; gap: .9rem; padding-top: .35rem; }
.tlt-vida-destaque-icon { color: var(--tlt-orange); display: inline-flex; }
.tlt-vida-destaque-text {
    color: var(--tlt-navy); font-weight: 700; letter-spacing: .07em;
    text-transform: uppercase; font-size: .98rem; line-height: 1.5;
    margin: 0; max-width: 26ch;
}
.tlt-vida-destaque-line { width: 46px; height: 3px; background: var(--tlt-orange); border-radius: 2px; }

/* ===== GALERIA (banner3.png — composição pronta do Figma) =============== */
.tlt-galeria { background: #fff; padding: 0 0 3.5rem; }
.tlt-galeria-banner img { width: 100%; height: auto; display: block; }

/* ===== PORQUE ============================================================ */
.tlt-porque { padding-block: 5rem 6rem; background: #fff; }
.tlt-porque-head { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; margin-bottom: 3rem; }
.tlt-porque-titulo { color: var(--tlt-text); margin: 0; max-width: 16ch; }
.tlt-porque-link { color: var(--tlt-orange); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: .35rem; }
.tlt-porque-link:hover { color: var(--tlt-orange-deep); }
.tlt-porque-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.75rem; }
@media (max-width: 991px) { .tlt-porque-cards { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px) { .tlt-porque-cards { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
.tlt-porque-card { display: flex; flex-direction: column; }
.tlt-porque-card-img { overflow: hidden; border-radius: 14px; }
.tlt-porque-card-img img { width: 100%; height: auto; display: block; transition: transform .45s ease; }
.tlt-porque-card:hover .tlt-porque-card-img img { transform: scale(1.07); }
.tlt-porque-card-titulo { font-size: 1.0625rem; font-weight: 700; margin: 1.1rem 0 .5rem; color: var(--tlt-text); }
.tlt-porque-card p { font-size: .9rem; color: var(--tlt-text-soft); line-height: 1.55; margin: 0; }

/* ===== POSICIONES ABIERTAS =============================================== */
.tlt-posiciones { background: var(--tlt-cream); padding-block: 5rem 6rem; }
.tlt-posiciones-grid { display: grid; gap: 3rem; grid-template-columns: 1fr; }
@media (min-width: 992px) { .tlt-posiciones-grid { grid-template-columns: .85fr 1.15fr; column-gap: 4rem; } }
.tlt-posiciones-titulo { color: var(--tlt-text); margin: 0 0 1.5rem; max-width: 9ch; }
.tlt-posiciones-intro { color: var(--tlt-text-soft); max-width: 36ch; margin-bottom: 2.5rem; line-height: 1.6; }
.tlt-creemos-titulo { color: var(--tlt-orange); font-weight: 600; margin-bottom: 1.1rem; }
.tlt-creemos-list { list-style: none; padding: 0; margin: 0 0 1.75rem; }
.tlt-creemos-list li { position: relative; padding-left: 1.5rem; margin-bottom: .65rem; color: var(--tlt-text-soft); }
.tlt-creemos-list li::before { content: ''; position: absolute; left: 0; top: .5rem; width: 8px; height: 8px; border-radius: 50%; background: var(--tlt-orange); }
.tlt-linkedin-link { display: inline-flex; align-items: center; gap: .5rem; color: var(--tlt-orange); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; font-size: .8rem; text-decoration: none; }
.tlt-linkedin-link:hover { color: var(--tlt-orange-deep); }
.tlt-linkedin-arrow { font-size: 1.1rem; line-height: 1; }
.tlt-vagas-list { display: grid; gap: 1rem; }
.tlt-vaga-card { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 1rem; background: #fff; padding: 1.25rem 1.6rem; border-radius: 10px; box-shadow: 0 1px 2px rgba(0,0,0,.05); text-decoration: none; color: inherit; cursor: default; transition: transform .12s ease, box-shadow .12s ease; }
.tlt-vaga-card:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,0,0,.09); color: inherit; }
.tlt-vaga-card .tlt-vaga-tag { color: var(--tlt-orange); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.tlt-vaga-card .tlt-vaga-titulo { font-size: 1.15rem; font-weight: 700; color: var(--tlt-text); margin-top: .35rem; }
.tlt-vaga-card .tlt-vaga-arrow { width: 40px; height: 40px; border-radius: 50%; background: rgba(245,151,63,.22); color: var(--tlt-orange); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ===== FORM (POSTULACIÓN) ================================================ */
.tlt-form-section { background: var(--tlt-orange); padding-block: 4rem 5rem; position: relative; }
.tlt-form-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 992px) { .tlt-form-grid { grid-template-columns: .85fr 1.15fr; } }

.tlt-form-side { position: relative; }
.tlt-form-cover { line-height: 0; }
.tlt-form-cover img { width: 100%; height: auto; display: block; }
.tlt-form-quote {
    position: relative;
    color: rgba(255,255,255,.95);
    font-style: italic;
    font-size: .95rem;
    line-height: 1.65;
    margin: 2.25rem 0 3rem;
    padding: 1.25rem 2.5rem 1.5rem;
}
.tlt-form-quote::before,
.tlt-form-quote::after {
    position: absolute;
    font-size: 4.5rem; line-height: 1;
    color: rgba(255,255,255,.4);
    font-style: normal; font-family: Georgia, 'Times New Roman', serif;
}
.tlt-form-quote::before { content: '\201C'; left: 0; top: -.25rem; }
.tlt-form-quote::after  { content: '\201D'; right: .25rem; bottom: -2rem; }

.tlt-consulta-card { display: grid; grid-template-columns: 104px 1fr; gap: 1.25rem; background: var(--tlt-orange-deep); color: #fff; padding: 1.1rem; border-radius: 18px; align-items: center; margin-top: 2.5rem; }
.tlt-consulta-card img { width: 104px; height: 104px; object-fit: cover; border-radius: 12px; }
.tlt-consulta-card .tlt-consulta-body { display: flex; flex-direction: column; gap: .85rem; }
.tlt-consulta-card .tlt-consulta-title { font-size: 1.05rem; font-weight: 600; line-height: 1.35; }
.tlt-consulta-card .tlt-consulta-title b { color: #fff; font-weight: 700; }
.tlt-consulta-card .tlt-consulta-wa {
    display: flex; align-items: center; justify-content: center; gap: .55rem;
    background: transparent; border: 1.5px solid rgba(255,255,255,.6); color: #fff;
    padding: .7rem 1rem; border-radius: 999px; font-size: .95rem; text-decoration: none;
    transition: background .15s ease;
}
.tlt-consulta-card .tlt-consulta-wa:hover { background: rgba(255,255,255,.14); color: #fff; }
.tlt-consulta-card .tlt-consulta-wa i { font-size: 1.05rem; }

.tlt-form-card { background: var(--tlt-orange-deep); padding: 1.5rem 1.5rem 1.75rem; border-radius: 4px; }
.tlt-form-grid-fields { display: grid; gap: .9rem; grid-template-columns: repeat(2, 1fr); }
.tlt-form-grid-fields > .full { grid-column: 1 / -1; }
@media (max-width: 575px) {
    .tlt-form-grid-fields { gap: .65rem; }
    .tlt-form-card { padding: 1.1rem 1.1rem 1.35rem; }
}
.tlt-form-field label { color: #fff; font-size: .82rem; font-weight: 500; margin-bottom: .25rem; display: block; }
.tlt-form-field input, .tlt-form-field select, .tlt-form-field textarea {
    width: 100%; background: #fff; color: var(--tlt-text);
    border: 1px solid transparent; border-radius: 4px;
    padding: .65rem .85rem; font-size: .9rem;
}
.tlt-form-field input:focus, .tlt-form-field select:focus, .tlt-form-field textarea:focus { outline: 2px solid var(--tlt-navy); }
.tlt-form-field input::placeholder, .tlt-form-field textarea::placeholder { color: #c9cfd9; }

.tlt-form-file {
    background: #fff; border: 1px dashed #d6dbe0; border-radius: 4px;
    padding: .9rem; text-align: center; cursor: pointer; display: flex;
    flex-direction: column; align-items: center; gap: .35rem; min-height: 96px;
    justify-content: center;
}
.tlt-form-file i { font-size: 1.6rem; color: var(--tlt-orange); }
.tlt-form-file small { font-size: .75rem; color: #98a0ad; }
.tlt-form-file input[type=file] { display: none; }
.tlt-form-file.has-file { border-style: solid; border-color: var(--tlt-orange); }

.tlt-form-textarea-wrap { position: relative; }
.tlt-form-textarea-wrap textarea { min-height: 80px; resize: vertical; }
.tlt-form-textarea-wrap .tlt-counter { position: absolute; right: .55rem; bottom: .35rem; font-size: .7rem; color: #98a0ad; pointer-events: none; }

/* Grupo de radios (Hijos / Genero / Movilidad) — uma única linha de 3 colunas */
.tlt-form-radios { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.tlt-form-radio { display: flex; flex-direction: column; gap: .4rem; color: #fff; }
.tlt-form-radio-label { font-size: .82rem; font-weight: 500; }
.tlt-form-radio-opts { display: flex; gap: 1rem; }
.tlt-form-radio-opts label { display: inline-flex; align-items: center; gap: .4rem; font-size: .9rem; color: #fff; cursor: pointer; margin: 0; }
.tlt-form-radio-opts input[type="radio"] { accent-color: var(--tlt-navy); width: auto; }
@media (max-width: 575px) {
    .tlt-form-radios { grid-template-columns: 1fr; gap: .65rem; }
}

.tlt-form-recaptcha { margin-top: 1rem; display: flex; justify-content: center; }
.tlt-form-submit-row { margin-top: 1.25rem; }
.tlt-form-submit { width: 100%; background: var(--tlt-navy); color: #fff; border: 0; padding: 1rem; border-radius: 4px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; }
.tlt-form-submit:hover { background: var(--tlt-navy-soft); }

.tlt-form-success { background: rgba(255,255,255,.95); border-left: 4px solid #2ea84a; padding: 1rem 1.25rem; border-radius: 4px; color: #2a6c3b; font-weight: 500; margin-bottom: 1.25rem; }
.tlt-form-error   { background: rgba(255,255,255,.95); border-left: 4px solid #d83a3a; padding: 1rem 1.25rem; border-radius: 4px; color: #8e2222; font-weight: 500; margin-bottom: 1.25rem; }

/* ===== FOOTER ============================================================ */
.tlt-footer { background: var(--tlt-navy-deep); color: #cfd6e3; font-size: .9rem; }
.tlt-footer a { color: #cfd6e3; text-decoration: none; }
.tlt-footer a:hover { color: #fff; }
.tlt-footer-main { padding-block: 3.5rem 3rem; }
.tlt-footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr 1fr; }
@media (min-width: 768px)  { .tlt-footer-grid { grid-template-columns: 1.2fr .7fr .8fr 1.7fr; column-gap: 2.5rem; } }
.tlt-footer-eco { display: flex; justify-content: flex-end; margin-top: -2.5rem; }
.tlt-footer-eco img { width: 78px; height: auto; display: block; }
@media (max-width: 767px) { .tlt-footer-eco { justify-content: center; margin-top: 1.5rem; } }
.tlt-footer-onde { background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.16); border-radius: 14px; padding: 1.6rem; }
.tlt-footer-onde h6 { color: #fff; font-weight: 700; margin-bottom: 1.15rem; }
.tlt-footer-onde p { margin: 0 0 .65rem; line-height: 1.5; }
.tlt-footer-onde strong { color: #fff; }
.tlt-footer-onde .tlt-social { display: flex; gap: .6rem; margin-top: 1.35rem; }
.tlt-footer-onde .tlt-social a { display: inline-flex; transition: transform .12s ease; }
.tlt-footer-onde .tlt-social a:hover { transform: translateY(-2px); }
.tlt-footer-onde .tlt-social img { width: 28px; height: 28px; display: block; }
.tlt-footer-col h6 { color: #fff; font-weight: 600; margin-bottom: 1.1rem; }
.tlt-footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.tlt-footer-col-marcas h6 { border-bottom: 1px solid rgba(255,255,255,.16); padding-bottom: .85rem; }

.tlt-footer-marcas { display: grid; grid-template-columns: repeat(3, 1fr); gap: .55rem 1rem; }
.tlt-footer-marcas li { white-space: nowrap; }

.tlt-footer-bottom { background: rgba(0,0,0,.28); }
.tlt-footer-bottom .container {
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
    padding-block: 1.2rem; flex-wrap: wrap; font-size: .8125rem;
}
.tlt-footer-bottom a img, .tlt-footer-bottom small img { vertical-align: middle; }
.tlt-footer-credit { display: inline-flex; align-items: center; gap: .45rem; }
.tlt-footer-credit img { height: 16px; width: auto; display: block; }

/* ===== ERROR PAGES (404 / 500) =========================================== */
.tlt-error-page { padding: 6rem 0 7rem; text-align: center; }
.tlt-error-code { font-size: clamp(8rem, 18vw, 14rem); font-weight: 800; color: var(--tlt-navy); line-height: 1; margin: 0; letter-spacing: -.04em; }
.tlt-error-title { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; color: var(--tlt-text); margin: 1.5rem 0 .75rem; }
.tlt-error-text { font-size: 1.0625rem; color: var(--tlt-text-soft); margin: 0 auto 2rem; max-width: 48ch; }
@media (max-width: 575px) { .tlt-error-page { padding: 3rem 0 4rem; } }

/* ===== WHATSAPP FLOAT ==================================================== */
.tlt-whatsapp-float {
    position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 1000;
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--tlt-orange); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.75rem; box-shadow: 0 8px 20px rgba(0,0,0,.18);
    text-decoration: none;
}
.tlt-whatsapp-float:hover { background: var(--tlt-orange-deep); color: #fff; }
