/* ==========================================================================
   Trabalhe Conosco | Ótica SR
   Identidade da campanha "#Vem pro time" (vermelho #AF000F + sparkle SR)
   Escopo: tudo sob .tc-page / prefixo .tc- para não afetar o restante do site
   ========================================================================== */

.tc-page {
    --tc-red: #AF000F;
    --tc-red-deep: #7E000B;
    --tc-red-bright: #D4111F;
    --tc-wash: #FBF4F4;
    --tc-ink: #16151A;
    --tc-ink-soft: #55525C;
    --tc-line: #E7E2E2;
    --tc-white: #FFFFFF;

    --tc-radius: 28px;
    --tc-radius-sm: 14px;
    --tc-shadow: 0 24px 60px -28px rgba(22, 21, 26, .35);
    --tc-shadow-lg: 0 40px 90px -40px rgba(175, 0, 15, .45);

    --tc-display: "Manrope", "Montserrat", Arial, Helvetica, sans-serif;
    --tc-body: "Montserrat", Arial, Helvetica, sans-serif;

    background: var(--tc-white);
    color: var(--tc-ink);
    font-family: var(--tc-body);
    overflow-x: hidden;
}

.tc-page *,
.tc-page *::before,
.tc-page *::after {
    box-sizing: border-box;
}

/* :where() zera a especificidade destes seletores-base, para que as regras
   de componente abaixo (.tc-eyebrow, .tc-hero-text, .tc-lockup...) vençam. */
.tc-page :where(h1, h2, h3, h4) {
    font-family: var(--tc-display);
    color: var(--tc-ink);
    letter-spacing: -.02em;
    line-height: 1.1;
    margin: 0;
}

.tc-page :where(p) {
    margin: 0;
    color: var(--tc-ink-soft);
    line-height: 1.7;
}

/* Espelha o .container do tema (max-width 1200px + padding 15px, definidos em
   bootstrap.min.css e responsive.css) para alinhar com o cabeçalho e o rodapé. */
.tc-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --------------------------------------------------------------------------
   Sparkle SR (motivo gráfico da marca)
   -------------------------------------------------------------------------- */
.tc-spark {
    display: inline-block;
    width: 1em;
    height: 1em;
    flex: 0 0 auto;
    background-color: currentColor;
    -webkit-mask: var(--tc-spark-mask) center / contain no-repeat;
    mask: var(--tc-spark-mask) center / contain no-repeat;
}

.tc-page {
    --tc-spark-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 0c4 33 13 46 50 50-37 4-46 17-50 50-4-33-13-46-50-50 37-4 46-17 50-50z'/%3E%3C/svg%3E");
    --tc-dots: radial-gradient(currentColor 1.6px, transparent 1.7px);
}

/* Cabeçalho de seção -------------------------------------------------------- */
.tc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--tc-display);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--tc-red);
    margin-bottom: 18px;
}

.tc-eyebrow .tc-spark {
    font-size: 13px;
}

.tc-title {
    font-size: clamp(30px, 4.4vw, 50px);
    font-weight: 800;
}

.tc-sub {
    font-size: 17px;
    margin-top: 16px;
    max-width: 60ch;
}

/* Botões -------------------------------------------------------------------- */
.tc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--tc-display);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .02em;
    padding: 18px 34px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    text-decoration: none;
    transition: transform .25s cubic-bezier(.2, .8, .3, 1), box-shadow .25s ease, background-color .25s ease, color .25s ease;
}

.tc-btn-light {
    background: var(--tc-white);
    color: var(--tc-red);
    box-shadow: 0 14px 34px -14px rgba(0, 0, 0, .5);
}

.tc-btn-light:hover,
.tc-btn-light:focus {
    background: var(--tc-white);
    color: var(--tc-red-deep);
    transform: translateY(-3px);
    box-shadow: 0 22px 44px -16px rgba(0, 0, 0, .55);
    text-decoration: none;
}

.tc-btn-solid {
    background: var(--tc-red);
    color: var(--tc-white);
    box-shadow: var(--tc-shadow-lg);
}

.tc-btn-solid:hover,
.tc-btn-solid:focus {
    background: var(--tc-red-bright);
    color: var(--tc-white);
    transform: translateY(-3px);
    text-decoration: none;
}

.tc-btn .tc-arrow {
    transition: transform .25s ease;
}

.tc-btn:hover .tc-arrow {
    transform: translateY(3px);
}

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
.tc-hero {
    position: relative;
    background: var(--tc-white);
    padding: 0;
}

.tc-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: stretch;
    min-height: 620px;
}

.tc-hero-panel {
    position: relative;
    background: var(--tc-red);
    color: var(--tc-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 92px clamp(28px, 5vw, 86px) 92px max(15px, calc((100vw - 1200px) / 2 + 15px));
    overflow: hidden;
}

/* Sparkle gigante em marca d'água */
.tc-hero-panel::after {
    content: "";
    position: absolute;
    right: -110px;
    bottom: -130px;
    width: 420px;
    height: 420px;
    background-color: rgba(255, 255, 255, .07);
    -webkit-mask: var(--tc-spark-mask) center / contain no-repeat;
    mask: var(--tc-spark-mask) center / contain no-repeat;
    pointer-events: none;
}

/* Malha de pontos */
.tc-hero-panel::before {
    content: "";
    position: absolute;
    left: 6%;
    top: 8%;
    width: 128px;
    height: 96px;
    color: rgba(255, 255, 255, .38);
    background-image: var(--tc-dots);
    background-size: 26px 26px;
    pointer-events: none;
}

.tc-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 560px;
}

/* Lockup #Vem pro time */
.tc-lockup {
    position: relative;
    display: inline-block;
    font-family: var(--tc-display);
    font-weight: 800;
    font-size: clamp(26px, 3vw, 34px);
    line-height: .96;
    color: var(--tc-white);
    text-transform: lowercase;
    margin-bottom: 30px;
    padding-left: 26px;
}

.tc-lockup span {
    display: block;
}

.tc-lockup::before {
    content: "#";
    position: absolute;
    left: -12px;
    top: -14px;
    font-size: 2.05em;
    line-height: 1;
    color: rgba(255, 255, 255, .26);
    z-index: -1;
}

.tc-hero-title {
    margin: 0;
    color: var(--tc-white);
}

.tc-h1-label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 20px;
}

.tc-h1-label::after {
    content: "";
    display: block;
    width: 46px;
    height: 3px;
    background: var(--tc-white);
    border-radius: 2px;
    margin-top: 14px;
}

.tc-h1-display {
    display: block;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -.025em;
}

.tc-hero-text {
    color: rgba(255, 255, 255, .92);
    font-size: 18px;
    line-height: 1.65;
    margin-top: 24px;
    max-width: 44ch;
}

.tc-hero-cta {
    margin-top: 38px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.tc-hero-media {
    position: relative;
    overflow: hidden;
}

.tc-hero-media img {
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
    object-position: center 22%;
    display: block;
}

/* Curva vermelha que costura painel e foto (igual à peça da campanha) */
.tc-hero-media::before {
    content: "";
    position: absolute;
    left: -108px;
    top: -6%;
    width: 132px;
    height: 112%;
    background: var(--tc-red);
    border-radius: 0 30% 30% 0 / 0 50% 50% 0;
    z-index: 2;
}

/* --------------------------------------------------------------------------
   HISTÓRIA
   -------------------------------------------------------------------------- */
.tc-historia {
    padding: clamp(72px, 9vw, 118px) 0;
    background: var(--tc-white);
}

.tc-historia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(36px, 6vw, 84px);
    align-items: center;
}

.tc-historia-text .tc-sub {
    font-size: 17.5px;
}

/* Bloco vermelho sólido, no mesmo tratamento que a campanha dá aos títulos. */
.tc-stat {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 36px;
    padding: 24px 30px;
    background: var(--tc-red);
    border-radius: var(--tc-radius-sm);
}

.tc-stat-num {
    font-family: var(--tc-display);
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    color: var(--tc-white);
    letter-spacing: -.03em;
}

.tc-stat-label {
    font-size: 14.5px;
    line-height: 1.45;
    color: rgba(255, 255, 255, .92);
}

/* Colagem de fotos */
.tc-collage {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 18px;
}

.tc-collage img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--tc-radius);
    box-shadow: var(--tc-shadow);
}

.tc-collage-a {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    aspect-ratio: 3 / 4;
}

.tc-collage-b {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    aspect-ratio: 4 / 3;
}

.tc-collage-c {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    aspect-ratio: 4 / 3;
}

.tc-collage::after {
    content: "";
    position: absolute;
    left: -46px;
    bottom: -34px;
    width: 108px;
    height: 108px;
    color: rgba(175, 0, 15, .28);
    background-image: var(--tc-dots);
    background-size: 22px 22px;
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   BENEFÍCIOS
   -------------------------------------------------------------------------- */
.tc-beneficios {
    position: relative;
    padding: clamp(72px, 9vw, 118px) 0;
    background: var(--tc-wash);
    overflow: hidden;
}

.tc-beneficios::before {
    content: "";
    position: absolute;
    right: -170px;
    top: -140px;
    width: 500px;
    height: 500px;
    background-color: rgba(175, 0, 15, .05);
    -webkit-mask: var(--tc-spark-mask) center / contain no-repeat;
    mask: var(--tc-spark-mask) center / contain no-repeat;
    pointer-events: none;
}

.tc-beneficios-head {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: clamp(28px, 5vw, 64px);
    align-items: end;
    margin-bottom: 52px;
}

.tc-beneficios-body {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: clamp(28px, 4vw, 52px);
    align-items: start;
}

.tc-vem-card {
    border-radius: var(--tc-radius);
    overflow: hidden;
    box-shadow: var(--tc-shadow);
    background: var(--tc-red);
}

.tc-vem-card img {
    display: block;
    width: 100%;
    height: auto;
}

.tc-vem-note {
    margin-top: 20px;
    font-family: var(--tc-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--tc-red);
    line-height: 1.5;
}

.tc-benef-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.tc-benef {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: var(--tc-white);
    border: 1px solid var(--tc-line);
    border-radius: var(--tc-radius-sm);
    padding: 22px 22px;
    transition: transform .3s cubic-bezier(.2, .8, .3, 1), box-shadow .3s ease, border-color .3s ease;
}

.tc-benef:hover {
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: 0 20px 40px -22px rgba(175, 0, 15, .45);
}

.tc-benef-icon {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--tc-red);
    color: var(--tc-white);
}

.tc-benef-icon .tc-spark {
    font-size: 19px;
}

.tc-benef h3 {
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -.005em;
    align-self: center;
}

.tc-benef-more {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px;
    border: 2px dashed rgba(175, 0, 15, .32);
    border-radius: var(--tc-radius-sm);
    font-family: var(--tc-display);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--tc-red);
}

/* --------------------------------------------------------------------------
   FORMULÁRIO
   -------------------------------------------------------------------------- */
.tc-form-section {
    padding: clamp(72px, 9vw, 118px) 0;
    background: var(--tc-white);
}

.tc-form-shell {
    position: relative;
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    background: var(--tc-ink);
    border-radius: var(--tc-radius);
    overflow: hidden;
    box-shadow: var(--tc-shadow);
}

.tc-form-media {
    position: relative;
    min-height: 100%;
}

.tc-form-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tc-form-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(175, 0, 15, .82) 0%, rgba(126, 0, 11, .92) 100%);
}

.tc-form-media-text {
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 0;
    padding: 42px 38px;
    color: var(--tc-white);
}

.tc-form-media-text .tc-lockup {
    margin-bottom: 18px;
}

.tc-form-media-text p {
    color: rgba(255, 255, 255, .9);
    font-size: 15px;
    max-width: 30ch;
}

.tc-form-body {
    background: var(--tc-white);
    padding: clamp(34px, 4vw, 56px);
}

.tc-form-body .tc-title {
    font-size: clamp(26px, 3.2vw, 38px);
}

.tc-form-body .tc-sub {
    font-size: 16px;
    margin-bottom: 30px;
}

/* Grid do formulário — os .item-form são filhos diretos do <form> (exigência
   da lib WebFormas 4.0), então o layout é feito no próprio <form>. */
.tc-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.tc-form .form-message,
.tc-form .tc-span-2,
.tc-form .arquivo,
.tc-form .captcha,
.tc-form .enviarForm,
.tc-form .tc-lgpd {
    grid-column: 1 / -1;
}

.tc-form .form-message:empty {
    display: none;
}

.tc-form .item-form {
    position: relative;
    margin: 0;
}

.tc-form .tc-label {
    display: block;
    font-family: var(--tc-display);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--tc-ink);
    margin-bottom: 8px;
}

.tc-form .form-control {
    width: 100%;
    height: 54px;
    padding: 0 18px;
    font-family: var(--tc-body);
    font-size: 15px;
    color: var(--tc-ink);
    background: #F7F5F5;
    border: 1.5px solid transparent;
    border-radius: 12px;
    outline: none;
    transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.tc-form .form-control::placeholder {
    color: #9B979F;
}

.tc-form .form-control:focus {
    background: var(--tc-white);
    border-color: var(--tc-red);
    box-shadow: 0 0 0 4px rgba(175, 0, 15, .1);
}

.tc-form .tooltipErro {
    margin-top: 6px;
    font-family: var(--tc-body);
}

/* Upload de currículo.
   O <input type="file"> é o PRIMEIRO filho do .item-form (exigência da lib,
   que lê $(this).children()[0]) mas fica absoluto, então a ordem visual é
   legenda -> caixa -> erro. */
.tc-file {
    position: relative;
    display: flex;
    flex-direction: column;
}

.tc-file input[type="file"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.tc-file-label {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    min-height: 84px;
    padding: 18px 22px;
    background: #F7F5F5;
    border: 2px dashed rgba(175, 0, 15, .35);
    border-radius: 12px;
    cursor: pointer;
    transition: border-color .2s ease, background-color .2s ease;
}

.tc-file input[type="file"]:focus ~ .tc-file-label,
.tc-file-label:hover {
    border-color: var(--tc-red);
    background: var(--tc-wash);
}

.tc-file.is-filled .tc-file-label {
    border-style: solid;
    border-color: var(--tc-red);
    background: var(--tc-wash);
}

.tc-file-icon {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--tc-red);
    color: var(--tc-white);
    font-size: 18px;
}

.tc-file-copy strong {
    display: block;
    font-family: var(--tc-display);
    font-size: 15px;
    font-weight: 800;
    color: var(--tc-ink);
    margin-bottom: 3px;
    word-break: break-word;
}

.tc-file-copy span {
    display: block;
    font-size: 13px;
    color: var(--tc-ink-soft);
}

.tc-file-erro {
    margin-top: 8px;
    font-size: 13px;
    color: #D4111F;
    font-weight: 600;
}

.tc-file-erro:empty {
    display: none;
}

.tc-form .captcha {
    margin-top: 2px;
}

.tc-form .enviarForm {
    justify-self: start;
    float: none !important;
    margin-left: 0 !important;
}

.tc-lgpd {
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--tc-ink-soft);
}

.tc-lgpd a {
    color: var(--tc-red);
    text-decoration: underline;
}

/* --------------------------------------------------------------------------
   CONTATO
   -------------------------------------------------------------------------- */
.tc-contato {
    padding: clamp(64px, 8vw, 100px) 0;
    background: var(--tc-wash);
}

.tc-contato-head {
    text-align: center;
    margin-bottom: 46px;
}

.tc-contato-head .tc-eyebrow {
    justify-content: center;
}

.tc-contato-head .tc-sub {
    margin-left: auto;
    margin-right: auto;
}

.tc-contato-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tc-contato-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--tc-white);
    border-radius: var(--tc-radius-sm);
    padding: 26px 24px;
    text-decoration: none;
    border: 1px solid var(--tc-line);
    transition: transform .3s cubic-bezier(.2, .8, .3, 1), box-shadow .3s ease, border-color .3s ease;
}

.tc-contato-card:hover,
.tc-contato-card:focus {
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: 0 22px 44px -24px rgba(175, 0, 15, .5);
    text-decoration: none;
}

.tc-contato-icon {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--tc-red);
    color: var(--tc-white);
    font-size: 21px;
}

.tc-contato-card h3 {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--tc-red);
    margin-bottom: 5px;
}

.tc-contato-card p {
    font-family: var(--tc-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--tc-ink);
    line-height: 1.35;
    word-break: break-word;
}

/* --------------------------------------------------------------------------
   CONFIRMAÇÃO DE ENVIO (obrigado-curriculo.html)
   -------------------------------------------------------------------------- */
.tc-obrigado {
    position: relative;
    padding: clamp(72px, 10vw, 130px) 0;
    background: var(--tc-wash);
    overflow: hidden;
}

.tc-obrigado::before {
    content: "";
    position: absolute;
    left: -150px;
    bottom: -160px;
    width: 460px;
    height: 460px;
    background-color: rgba(175, 0, 15, .05);
    -webkit-mask: var(--tc-spark-mask) center / contain no-repeat;
    mask: var(--tc-spark-mask) center / contain no-repeat;
    pointer-events: none;
}

.tc-obrigado-card {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
    background: var(--tc-white);
    border-radius: var(--tc-radius);
    box-shadow: var(--tc-shadow);
    padding: clamp(38px, 6vw, 70px) clamp(24px, 5vw, 64px);
    text-align: center;
}

.tc-obrigado-selo {
    width: 84px;
    height: 84px;
    margin: 0 auto 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--tc-red);
    color: var(--tc-white);
    box-shadow: var(--tc-shadow-lg);
}

.tc-obrigado-selo .tc-spark {
    font-size: 40px;
}

.tc-obrigado-card .tc-title {
    font-size: clamp(27px, 3.6vw, 40px);
}

.tc-obrigado-card .tc-sub {
    margin: 18px auto 0;
    font-size: 16.5px;
}

.tc-obrigado-acoes {
    margin-top: 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.tc-btn-ghost {
    background: transparent;
    color: var(--tc-red);
    border: 2px solid rgba(175, 0, 15, .3);
}

.tc-btn-ghost:hover,
.tc-btn-ghost:focus {
    background: var(--tc-red);
    border-color: var(--tc-red);
    color: var(--tc-white);
    transform: translateY(-3px);
    text-decoration: none;
}

/* --------------------------------------------------------------------------
   Animações de entrada
   -------------------------------------------------------------------------- */
.tc-js .tc-reveal {
    opacity: 0;
    transform: translateY(26px);
}

.tc-js .tc-reveal.tc-in {
    opacity: 1;
    transform: none;
    transition: opacity .75s cubic-bezier(.2, .8, .3, 1), transform .75s cubic-bezier(.2, .8, .3, 1);
    transition-delay: var(--tc-delay, 0ms);
}

@keyframes tcSpin {
    to {
        transform: rotate(360deg);
    }
}

.tc-hero-panel::after {
    animation: tcSpin 44s linear infinite;
}

@media (prefers-reduced-motion: reduce) {

    .tc-page *,
    .tc-page *::before,
    .tc-page *::after {
        animation: none !important;
        transition: none !important;
    }

    .tc-js .tc-reveal {
        opacity: 1;
        transform: none;
    }
}

/* --------------------------------------------------------------------------
   Responsivo
   -------------------------------------------------------------------------- */
@media (max-width: 1199px) {
    .tc-hero-panel {
        padding-left: clamp(28px, 5vw, 86px);
    }

    .tc-beneficios-body {
        grid-template-columns: 250px 1fr;
    }
}

@media (max-width: 991px) {
    .tc-hero-grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .tc-hero-panel {
        order: 2;
        padding: 56px 24px 64px;
    }

    .tc-hero-media {
        order: 1;
    }

    .tc-hero-media img {
        min-height: 0;
        aspect-ratio: 16 / 10;
        height: auto;
    }

    .tc-hero-media::before {
        display: none;
    }

    .tc-hero-inner {
        max-width: none;
    }

    .tc-historia-grid,
    .tc-beneficios-head,
    .tc-beneficios-body,
    .tc-form-shell {
        grid-template-columns: 1fr;
    }

    .tc-beneficios-head {
        align-items: start;
    }

    .tc-vem-card {
        max-width: 320px;
    }

    .tc-form-media {
        min-height: 260px;
    }

    .tc-form-media-text {
        padding: 30px 28px;
    }

    .tc-collage::after {
        left: -18px;
    }

    .tc-contato-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .tc-form,
    .tc-benef-grid {
        grid-template-columns: 1fr;
    }

    .tc-form .item-form {
        grid-column: 1 / -1;
    }

    .tc-btn {
        width: 100%;
        padding: 17px 24px;
    }

    .tc-hero-cta {
        display: block;
    }

    .tc-collage {
        gap: 12px;
    }

    .tc-stat {
        padding: 18px 20px;
    }

    .tc-stat-num {
        font-size: 38px;
    }

    .tc-form-body {
        padding: 30px 22px;
    }
}
