:root {
    /* Cores institucionais Proativa */
    --primary: #561009;          /* RGB 86, 16, 9 */
    --primary-light: #7a1a11;
    --primary-dark: #3d0b06;

    --gray-dark: #3b3b3b;
    --gray: #666666;
    --gray-light: #f5f5f5;

    --white: #ffffff;
    --black: #000000;

    --text: #222222;
    --text-light: #666666;

    --background: #ffffff;
    --background-alt: #f5f5f5;

    --max-width: 1200px;
}

/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BASE */

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--background);
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 10px;
    padding-bottom: 10px;
}

.logo img {
    height: 110px;
    width: auto;
}

.header nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.header nav a {
    color: white;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 1.05rem;
}

.header nav a:hover {
    background: rgba(255,255,255,0.15);
}

/* HERO */

.hero {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: #111;
}

.hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
}

/* =========================
   HERO OUTSOURCING
========================= */

.outsourcing-page-hero {
    position: relative;
    min-height: 92vh;

    display: flex;
    align-items: center;

    padding: 170px 0 110px;

    background:
        linear-gradient(
            135deg,
            rgba(28, 28, 28, 0.88) 0%,
            rgba(86, 16, 9, 0.82) 52%,
            rgba(28, 28, 28, 0.86) 100%
        ),
        url("../img/outsourcing.webp") center center / cover no-repeat;

    overflow: hidden;
}

.outsourcing-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 32%),
        radial-gradient(circle at bottom right, rgba(86, 16, 9, 0.42), transparent 34%);

    pointer-events: none;
}

.outsourcing-hero-content {
    position: relative;
    z-index: 2;

    max-width: 850px;
    color: var(--white);
}

.outsourcing-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 22px;
    padding: 9px 18px;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.12);
    color: var(--white);

    border: 1px solid rgba(255, 255, 255, 0.28);

    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.outsourcing-hero-label::before {
    content: "";
    width: 9px;
    height: 9px;

    border-radius: 50%;
    background: var(--white);

    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.16);
}

.outsourcing-hero-content h1 {
    margin: 0 0 22px;

    color: var(--white);

    font-size: clamp(3rem, 7vw, 6.4rem);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.outsourcing-hero-content p {
    max-width: 680px;

    margin: 0 0 34px;

    color: rgba(255, 255, 255, 0.88);

    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.65;
}

.outsourcing-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Botões do hero */

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 14px 26px;

    border-radius: 999px;

    font-size: 0.96rem;
    font-weight: 800;
    text-decoration: none;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.primary-button {
    background: var(--white);
    color: var(--primary);

    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.primary-button:hover {
    background: var(--primary);
    color: var(--white);

    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(86, 16, 9, 0.38);
}

.secondary-button {
    background: transparent;
    color: var(--white);

    border: 1px solid rgba(255, 255, 255, 0.46);
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.12);

    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .site-header {
        padding: 18px 0;
    }

    .header-container {
        gap: 18px;
    }

    .site-logo img {
        width: 150px;
    }

    .main-menu ul {
        gap: 22px;
    }

    .header-button {
        padding: 10px 18px;
    }

    .outsourcing-page-hero {
        min-height: 86vh;
        padding: 150px 0 90px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-menu {
        order: 3;
        width: 100%;
    }

    .main-menu ul {
        justify-content: center;
        gap: 20px;
    }

    .header-button {
        display: none;
    }

    .outsourcing-page-hero {
        min-height: 82vh;
        padding: 170px 0 80px;
        text-align: center;
    }

    .outsourcing-hero-content {
        margin: 0 auto;
    }

    .outsourcing-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .outsourcing-hero-actions {
        justify-content: center;
    }
}

@media (max-width: 520px) {
    .main-menu ul {
        gap: 16px;
    }

    .main-menu a {
        font-size: 0.9rem;
    }

    .site-logo img {
        width: 140px;
    }

    .outsourcing-page-hero {
        min-height: 86vh;
        padding: 165px 0 70px;
    }

    .outsourcing-hero-content h1 {
        font-size: 3.2rem;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }
}

/* =========================
   HEADER PADRÃO
========================= */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    padding: 22px 0;

    background: transparent;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo img {
    width: 180px;
    max-width: 100%;
    height: auto;
    display: block;
}

/* Menu horizontal */

.main-menu ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.main-menu li {
    margin: 0;
    padding: 0;
}

.main-menu a {
    color: var(--white);
    text-decoration: none;

    font-size: 0.98rem;
    font-weight: 700;

    transition: color 0.2s ease, transform 0.2s ease;
}

.main-menu a:hover,
.main-menu a.active {
    color: #ffffff;
    transform: translateY(-1px);
}

.main-menu a.active {
    position: relative;
}

.main-menu a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;

    width: 100%;
    height: 3px;

    border-radius: 999px;
    background: var(--white);
}

/* Botão do header */

.header-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 11px 22px;
    border-radius: 999px;

    background: var(--white);
    color: var(--primary);

    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;

    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.header-button:hover {
    background: var(--primary);
    color: var(--white);

    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(86, 16, 9, 0.36);
}

/* INTRO */

.intro {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.intro h1 {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.intro p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* BOTÕES */

.btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    transition: 0.2s;
}

.btn:hover {
    background: var(--primary-light);
}

/* SOBRE */

.about {
    padding: 80px 20px;
    background: var(--background-alt);
}

.about h2 {
    text-align: center;
    margin-bottom: 30px;
}

.about p {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-light);
}

/* RESPONSIVO */

@media (max-width: 768px) {

    .header .container {
        flex-direction: column;
        gap: 15px;
    }

    .logo img {
        height: 70px;
    }

    .header nav {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .header nav a {
        padding: 8px 12px;
        font-size: 0.95rem;
    }

    .hero {
        height: 220px;
    }

    .intro {
        margin: 40px auto;
    }

    .intro h1 {
        font-size: 1.8rem;
    }

    .intro p {
        font-size: 1rem;
    }
}
/* CARROSSEL DE SERVIÇOS */

.services-carousel {
    background: var(--primary);
    padding: 50px 20px 50px;
}

.services-carousel-wrapper {
    position: relative;
    max-width: var(--max-width);
    height: 460px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 18px;
    background: #111111;
    box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

.services-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.services-carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.services-carousel-slide.active {
    opacity: 1;
    visibility: visible;
}

.services-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-carousel-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.78) 0%,
            rgba(0,0,0,0.54) 42%,
            rgba(0,0,0,0.20) 100%
        );
    z-index: 1;
}

.services-carousel-content {
    position: absolute;
    left: 70px;
    bottom: 70px;
    z-index: 2;

    max-width: 520px;
    color: #ffffff;
}

.services-carousel-content h2 {
    font-size: 2.3rem;
    line-height: 1.1;
    margin-bottom: 18px;
}

.services-carousel-content ul {
    list-style: none;
    margin-bottom: 26px;
}

.services-carousel-content li {
    font-size: 1.08rem;
    margin-bottom: 8px;
}

.services-carousel-content li::before {
    content: "⦿ ";
    color: #ffffff;
}

.services-carousel-link {
    display: inline-block;
    padding: 11px 22px;
    border-radius: 6px;
    background: var(--primary);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.75);
    font-weight: 600;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.services-carousel-link:hover {
    background: var(--primary-light);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Botões do carrossel */

.services-carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 46px;
    height: 46px;

    border: none;
    border-radius: 50%;

    background: rgba(0,0,0,0.45);
    color: #ffffff;

    font-size: 2.1rem;
    line-height: 1;

    cursor: pointer;
    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: background 0.2s ease;
}

.services-carousel-button:hover {
    background: rgba(86,16,9,0.9);
}

.services-carousel-prev {
    left: 20px;
}

.services-carousel-next {
    right: 20px;
}

/* Bolinhas */

.services-carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);

    display: flex;
    gap: 10px;
    z-index: 6;
}

.services-carousel-dot {
    width: 11px;
    height: 11px;

    border: none;
    border-radius: 50%;

    background: rgba(255,255,255,0.55);
    cursor: pointer;
}

.services-carousel-dot.active {
    background: #ffffff;
}

/* Responsivo carrossel */

@media (max-width: 768px) {
    .services-carousel {
        padding: 30px 14px 35px;
    }

    .services-carousel-wrapper {
        height: 420px;
        border-radius: 14px;
    }

    .services-carousel-content {
        left: 28px;
        right: 28px;
        bottom: 62px;
        max-width: none;
    }

    .services-carousel-content h2 {
        font-size: 1.8rem;
    }

    .services-carousel-content li {
        font-size: 0.98rem;
    }

    .services-carousel-button {
        width: 36px;
        height: 36px;
        font-size: 1.6rem;
    }

    .services-carousel-prev {
        left: 10px;
    }

    .services-carousel-next {
        right: 10px;
    }
}

/* SEÇÃO TECNOLOGIA DA INFORMAÇÃO */

.ti-section {
    background: var(--white);
    padding: 90px 0;
}

.ti-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}

.ti-content h1 {
    color: var(--primary);
    font-size: 3rem;
    line-height: 1.12;
    font-weight: 700;
    margin-bottom: 24px;
}

.ti-content h2 {
    color: var(--gray-dark);
    font-size: 1.55rem;
    line-height: 1.45;
    font-weight: 500;
    margin-bottom: 36px;
}

.benefits-list {
    list-style: none;
    margin: 0;
    padding: 0;

    display: grid;
    gap: 18px;
}

.benefits-list li {
    position: relative;
    padding-left: 42px;

    color: var(--gray-dark);
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 600;
}

.benefits-list li::before {
    content: "✓";

    position: absolute;
    left: 0;
    top: 0.05em;

    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary);
    color: var(--white);

    font-size: 0.95rem;
    font-weight: 800;
}

.ti-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.ti-image img {
    display: block;
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: 20px;
}

/* RESPONSIVO - SEÇÃO TECNOLOGIA DA INFORMAÇÃO */

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

    .ti-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .ti-content h1 {
        font-size: 2.1rem;
        text-align: center;
    }

    .ti-content h2 {
        font-size: 1.2rem;
        text-align: center;
    }

    .benefits-list {
        max-width: 380px;
        margin: 0 auto;
    }

    .benefits-list li {
        font-size: 1.05rem;
    }

    .ti-image {
        justify-content: center;
    }

    .ti-image img {
        max-width: 360px;
    }
}

/* SEÇÃO QUEM É A PROATIVA */

.about-proativa {
    background: var(--gray-light);
    padding: 90px 0;
}

.about-proativa-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.section-label {
    display: inline-block;
    margin-bottom: 14px;

    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about-proativa-content h2 {
    color: var(--primary);
    font-size: 2.8rem;
    line-height: 1.15;
    margin-bottom: 24px;
}

.about-proativa-content p {
    color: var(--gray-dark);
    font-size: 1.16rem;
    line-height: 1.75;
    margin-bottom: 28px;
}

.about-proativa-content blockquote {
    margin: 0;
    padding: 24px 28px;

    border-left: 5px solid var(--primary);
    border-radius: 12px;

    background: var(--white);
    color: var(--gray-dark);

    font-size: 1.08rem;
    line-height: 1.7;
    font-weight: 600;

    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.about-proativa-card {
    padding: 42px 36px;

    border-radius: 22px;

    background: var(--primary);
    color: var(--white);

    box-shadow: 0 18px 45px rgba(86,16,9,0.28);
}

.about-proativa-card h3 {
    font-size: 2rem;
    line-height: 1.18;
    margin-bottom: 22px;
}

.about-proativa-card p {
    font-size: 1.08rem;
    line-height: 1.65;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.92);
}

.about-proativa-button {
    background: var(--white);
    color: var(--primary);
}

.about-proativa-button:hover {
    background: var(--gray-light);
    color: var(--primary);
}

/* RESPONSIVO - QUEM É A PROATIVA */

@media (max-width: 768px) {
    .about-proativa {
        padding: 60px 0;
    }

    .about-proativa-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-proativa-content h2 {
        font-size: 2.1rem;
        text-align: center;
    }

    .about-proativa-content p {
        font-size: 1.05rem;
        text-align: center;
    }

    .section-label {
        display: block;
        text-align: center;
    }

    .about-proativa-content blockquote {
        font-size: 1rem;
        padding: 22px;
    }

    .about-proativa-card {
        padding: 34px 26px;
        text-align: center;
    }

    .about-proativa-card h3 {
        font-size: 1.7rem;
    }
}

/* SEÇÃO 4 PILARES DA PROATIVA */

.pillars-section {
    background: var(--white);
    padding: 90px 0;
}

.pillars-header {
    max-width: 760px;
    margin: 0 auto 52px;
    text-align: center;
}

.pillars-header h2 {
    color: var(--primary);
    font-size: 2.8rem;
    line-height: 1.15;
    margin: 0;
}

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

.pillar-card {
    position: relative;
    overflow: hidden;

    min-height: 360px;
    padding: 34px 24px 30px;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    border-radius: 22px;
    background: var(--gray-light);

    box-shadow: 0 12px 30px rgba(0,0,0,0.08);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.pillar-card::before {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        145deg,
        var(--primary) 0%,
        var(--primary-dark) 100%
    );

    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 0;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(86,16,9,0.22);
}

.pillar-card:hover::before {
    opacity: 1;
}

.pillar-icon,
.pillar-card h3,
.pillar-card p {
    position: relative;
    z-index: 1;
}

.pillar-icon {
    width: 96px;
    height: 96px;
    margin-bottom: 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: var(--white);

    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.pillar-icon img {
    display: block;
    width: 62px;
    height: 62px;
    object-fit: contain;
}

.pillar-card h3 {
    color: var(--primary);
    font-size: 1.45rem;
    line-height: 1.2;
    margin-bottom: 18px;

    transition: color 0.25s ease;
}

.pillar-card p {
    color: var(--gray-dark);
    font-size: 1rem;
    line-height: 1.65;
    margin: 0;

    transition: color 0.25s ease;
}

.pillar-card:hover h3,
.pillar-card:hover p {
    color: var(--white);
}

/* RESPONSIVO - 4 PILARES */

@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .pillars-header {
        margin-bottom: 36px;
    }

    .pillars-header h2 {
        font-size: 2.1rem;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .pillar-card {
        min-height: auto;
        padding: 32px 24px;
    }

    .pillar-icon {
        width: 86px;
        height: 86px;
        margin-bottom: 22px;
    }

    .pillar-icon img {
        width: 56px;
        height: 56px;
    }

    .pillar-card h3 {
        font-size: 1.35rem;
    }

    .pillar-card p {
        font-size: 0.98rem;
    }
}

/* CTA CONSULTORES */

.consultants-cta {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.14), transparent 34%),
        linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);

    padding: 85px 0;
    color: var(--white);
}

.consultants-cta::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.16),
            rgba(0,0,0,0.04)
        );

    pointer-events: none;
}

.consultants-cta-content {
    position: relative;
    z-index: 1;

    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.consultants-cta-content h2 {
    color: var(--white);
    font-size: 2.35rem;
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 24px;
}

.consultants-cta-content p {
    color: rgba(255,255,255,0.92);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 36px;
}

.consultants-cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.whatsapp-button {
    background: #25d366;
    color: var(--white);
    box-shadow: 0 12px 28px rgba(37,211,102,0.28);
    padding: 15px 32px;
    font-size: 1.05rem;
}

.whatsapp-button:hover {
    background: #1ebe5d;
    color: var(--white);
    transform: translateY(-2px);
}


/* RESPONSIVO - CTA CONSULTORES */

@media (max-width: 768px) {
    .consultants-cta {
        padding: 60px 0;
    }

    .consultants-cta-content h2 {
        font-size: 1.75rem;
    }

    .consultants-cta-content p {
        font-size: 1.05rem;
    }

    .consultants-cta-actions {
        flex-direction: column;
        gap: 14px;
    }

    .consultants-cta-actions .btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }
}

.hp-field {
    display: none !important;
}

.form-alert {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
}

.form-alert-success {
    background: #e7f8ef;
    color: #146c43;
    border: 1px solid #b7ebcc;
}

.form-alert-error {
    background: #fdecec;
    color: #b42318;
    border: 1px solid #fac5c5;
}

/* =========================
   Contact Form Section
========================= */

.contact-section {
    padding: 90px 0;
    background:
        radial-gradient(circle at top left, rgba(86, 16, 9, 0.16), transparent 35%),
        linear-gradient(135deg, #3b3b3b 0%, #2f2f2f 48%, #1f1f1f 100%);
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 48px;
    align-items: center;
}

.contact-content h2 {
    margin: 14px 0 18px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.08;
    color: var(--white);
}

.contact-content p {
    max-width: 560px;
    font-size: 1.08rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.84);
}

.contact-highlight {
    margin-top: 24px;
    padding: 18px 22px;
    border-left: 4px solid var(--primary);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.contact-highlight strong {
    color: var(--white);
}

.contact-card {
    width: 100%;
    padding: 0;
    border-radius: 24px;
    background: var(--white);
    color: var(--gray-dark);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
    overflow: hidden;
}

.contact-card h3 {
    margin: 0;
    padding: 26px 34px;

    background:
        linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);

    color: var(--white);
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.2;

    position: relative;
}

.contact-card h3::after {
    content: "";
    display: block;

    width: 64px;
    height: 4px;

    margin-top: 12px;

    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
}

.contact-form {
    padding: 34px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

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

.form-group label {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--gray-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    min-height: 50px;
    padding: 13px 15px;
    border: 1px solid #d8d8d8;
    border-radius: 12px;
    background: var(--white);
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(86, 16, 9, 0.14);
    background: #ffffff;
}

.form-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 18px;
    padding: 9px 18px;

    border-radius: 999px;

    background: var(--white);
    color: var(--primary);

    border: 1px solid rgba(86, 16, 9, 0.22);
    box-shadow: 0 10px 28px rgba(86, 16, 9, 0.14);

    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.form-section-label::before {
    content: "";
    width: 9px;
    height: 9px;

    border-radius: 50%;
    background: var(--primary);

    box-shadow: 0 0 0 5px rgba(86, 16, 9, 0.12);
}


/* Checkboxes */

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 12px 13px;
    border: 1px solid #d8d8d8;
    border-radius: 12px;
    background: var(--gray-light);
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.checkbox-option:hover {
    border-color: var(--primary);
    background: #ffffff;
    transform: translateY(-1px);
}

.checkbox-option input {
    width: 17px;
    height: 17px;
    min-height: auto;
    padding: 0;
    accent-color: var(--primary);
    cursor: pointer;
}

.checkbox-option span {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--gray-dark);
}

/* Honeypot */

.hp-field {
    display: none !important;
}

/* Turnstile */

.turnstile-wrapper {
    display: flex;
    justify-content: flex-start;
    min-height: 65px;
}

/* Botão */

.contact-submit {
    width: 100%;
    min-height: 54px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(86, 16, 9, 0.28);
    filter: brightness(1.06);
}

.contact-submit:active {
    transform: translateY(0);
}

/* Label da seção de contato */

.contact-section .section-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(86, 16, 9, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
@media (max-width: 980px) {
    .contact-section {
        padding: 70px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .contact-content {
        text-align: center;
    }

    .contact-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-highlight {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .contact-card {
        border-radius: 20px;
    }

    .contact-card h3 {
        padding: 24px 22px;
        font-size: 1.5rem;
    }

    .contact-form {
        padding: 24px 18px;
    }
}

/* BOTÃO VOLTAR AO TOPO */

.back-to-top {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 9999;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 50%;

    background: var(--primary);
    color: var(--white);

    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;

    cursor: pointer;

    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);

    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-light);
    box-shadow: 0 14px 32px rgba(86, 16, 9, 0.38);
    transform: translateY(-3px);
}

.back-to-top:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .back-to-top {
        left: 18px;
        bottom: 18px;

        width: 42px;
        height: 42px;

        font-size: 1.35rem;
    }
}

/* HEADER GLOBAL */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    width: 100%;
    height: auto;
    min-height: initial;

    z-index: 1000;

    padding: 22px 0;

    background: transparent;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 32px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo img {
    width: 180px;
    height: auto;
    display: block;
}

.main-menu {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 1;
}

.main-menu ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    gap: 34px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.main-menu li {
    margin: 0;
    padding: 0;
}

.main-menu a {
    color: var(--white);
    text-decoration: none;

    font-size: 0.98rem;
    font-weight: 700;

    transition: color 0.2s ease, transform 0.2s ease;
}

.main-menu a:hover,
.main-menu a.active {
    color: var(--white);
    transform: translateY(-1px);
}

.main-menu a.active {
    position: relative;
}

.main-menu a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;

    width: 100%;
    height: 3px;

    border-radius: 999px;
    background: var(--white);
}

.header-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 11px 22px;

    border-radius: 999px;

    background: var(--white);
    color: var(--primary);

    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;

    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.header-button:hover {
    background: var(--primary);
    color: var(--white);

    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(86, 16, 9, 0.36);
}

/* =========================================================
   OUTSOURCING PAGE - SEÇÕES INTERNAS
   Seguro para a home: tudo preso em body.outsourcing-page
========================================================= */

/* Labels gerais da página outsourcing */

body.outsourcing-page .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 16px;
    padding: 8px 16px;

    border-radius: 999px;

    background: rgba(86, 16, 9, 0.08);
    color: var(--primary);

    border: 1px solid rgba(86, 16, 9, 0.18);

    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

body.outsourcing-page .section-label::before {
    content: "";
    width: 8px;
    height: 8px;

    border-radius: 50%;
    background: var(--primary);

    box-shadow: 0 0 0 5px rgba(86, 16, 9, 0.12);
}


/* =========================================================
   CHAMADA EMPRESÁRIO
========================================================= */

body.outsourcing-page .outsourcing-business-call {
    padding: 90px 0;
    background: var(--white);
}

body.outsourcing-page .outsourcing-business-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

body.outsourcing-page .outsourcing-business-text h2 {
    margin: 0;

    color: var(--primary);

    font-size: clamp(2.2rem, 4.5vw, 4rem);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.04em;
}

body.outsourcing-page .outsourcing-business-benefits {
    display: grid;
    gap: 22px;
}

body.outsourcing-page .outsourcing-business-card {
    position: relative;

    padding: 30px 34px 30px 78px;

    border-radius: 20px;

    background: var(--gray-light);

    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

body.outsourcing-page .outsourcing-business-card::before {
    content: "✓";

    position: absolute;
    left: 30px;
    top: 50%;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary);
    color: var(--white);

    font-size: 1rem;
    font-weight: 900;

    transform: translateY(-50%);
}

body.outsourcing-page .outsourcing-business-card:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: 0 18px 45px rgba(86, 16, 9, 0.16);
}

body.outsourcing-page .outsourcing-business-card h3 {
    margin: 0;

    color: var(--primary);

    font-size: 1.45rem;
    line-height: 1.25;
    font-weight: 900;
}


/* =========================================================
   DESTAQUES
========================================================= */

body.outsourcing-page .outsourcing-highlights {
    padding: 80px 0;
    background: var(--gray-light);
}

body.outsourcing-page .outsourcing-highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

body.outsourcing-page .outsourcing-highlight-card {
    padding: 34px 30px;

    border-radius: 20px;

    background: var(--white);

    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

body.outsourcing-page .outsourcing-highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(86, 16, 9, 0.14);
}

body.outsourcing-page .outsourcing-highlight-card h2 {
    margin: 0 0 14px;

    color: var(--primary);

    font-size: 1.55rem;
    line-height: 1.2;
    font-weight: 900;
}

body.outsourcing-page .outsourcing-highlight-card p {
    margin: 0;

    color: var(--text-light);

    font-size: 1rem;
    line-height: 1.65;
}


/* =========================================================
   INTRO OUTSOURCING
========================================================= */

body.outsourcing-page .outsourcing-intro {
    padding: 95px 0;
    background: var(--white);
}

body.outsourcing-page .outsourcing-intro-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 56px;
    align-items: center;
}

body.outsourcing-page .outsourcing-intro-content h2 {
    margin: 0 0 22px;

    color: var(--primary);

    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.03em;
}

body.outsourcing-page .outsourcing-intro-content p {
    margin: 0;

    color: var(--text-light);

    font-size: 1.08rem;
    line-height: 1.75;
}

body.outsourcing-page .outsourcing-intro-card {
    padding: 38px 34px;

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            var(--primary) 0%,
            var(--primary-dark) 100%
        );

    color: var(--white);

    box-shadow: 0 18px 45px rgba(86, 16, 9, 0.28);
}

body.outsourcing-page .outsourcing-intro-card h3 {
    margin: 0 0 20px;

    color: var(--white);

    font-size: 1.75rem;
    line-height: 1.18;
    font-weight: 900;
}

body.outsourcing-page .outsourcing-intro-card ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

body.outsourcing-page .outsourcing-intro-card li {
    position: relative;

    margin-bottom: 14px;
    padding-left: 34px;

    color: rgba(255, 255, 255, 0.92);

    font-size: 1.02rem;
    line-height: 1.45;
    font-weight: 700;
}

body.outsourcing-page .outsourcing-intro-card li:last-child {
    margin-bottom: 0;
}

body.outsourcing-page .outsourcing-intro-card li::before {
    content: "✓";

    position: absolute;
    left: 0;
    top: 1px;

    width: 22px;
    height: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--white);
    color: var(--primary);

    font-size: 0.78rem;
    font-weight: 900;
}


/* =========================================================
   BENEFÍCIOS DO OUTSOURCING
========================================================= */

body.outsourcing-page .outsourcing-benefits {
    padding: 95px 0;
    background: var(--gray-light);
}

body.outsourcing-page .outsourcing-benefits .section-header {
    max-width: 880px;

    margin: 0 auto 50px;

    text-align: center;
}

body.outsourcing-page .outsourcing-benefits .section-header h2 {
    margin: 0;

    color: var(--primary);

    font-size: clamp(2.1rem, 4vw, 3.3rem);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.03em;
}

body.outsourcing-page .outsourcing-benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 22px;
}

body.outsourcing-page .outsourcing-benefit-card {
    min-height: 310px;

    padding: 28px 20px;

    border-radius: 20px;

    background: var(--white);

    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

body.outsourcing-page .outsourcing-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(86, 16, 9, 0.14);
}

body.outsourcing-page .outsourcing-benefit-card h3 {
    margin: 0 0 14px;

    color: var(--primary);

    font-size: 1.08rem;
    line-height: 1.2;
    font-weight: 900;
}

body.outsourcing-page .outsourcing-benefit-card p {
    margin: 0;

    color: var(--text-light);

    font-size: 0.94rem;
    line-height: 1.55;
}


/* =========================================================
   COMO FUNCIONA
========================================================= */

body.outsourcing-page .outsourcing-process {
    padding: 95px 0;
    background: var(--white);
}

body.outsourcing-page .outsourcing-process-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
}

body.outsourcing-page .outsourcing-process-content h2 {
    margin: 0 0 22px;

    color: var(--primary);

    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.03em;
}

body.outsourcing-page .outsourcing-process-content p {
    margin: 0;

    color: var(--text-light);

    font-size: 1.08rem;
    line-height: 1.75;
}

body.outsourcing-page .outsourcing-steps {
    display: grid;
    gap: 18px;
}

body.outsourcing-page .outsourcing-step {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 20px;

    padding: 24px 26px;

    border-radius: 20px;

    background: var(--gray-light);

    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

body.outsourcing-page .outsourcing-step:hover {
    transform: translateY(-4px);
    background: var(--white);
    box-shadow: 0 18px 42px rgba(86, 16, 9, 0.13);
}

body.outsourcing-page .outsourcing-step > span {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary);
    color: var(--white);

    font-size: 1.05rem;
    font-weight: 900;
}

body.outsourcing-page .outsourcing-step h3 {
    margin: 0 0 8px;

    color: var(--primary);

    font-size: 1.35rem;
    line-height: 1.2;
    font-weight: 900;
}

body.outsourcing-page .outsourcing-step p {
    margin: 0;

    color: var(--text-light);

    font-size: 1rem;
    line-height: 1.6;
}


/* =========================================================
   CTA FINAL OUTSOURCING
========================================================= */

body.outsourcing-page .outsourcing-cta {
    padding: 95px 0;

    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 32%),
        linear-gradient(
            135deg,
            var(--primary) 0%,
            var(--primary-dark) 100%
        );
}

body.outsourcing-page .outsourcing-cta-box {
    max-width: 940px;

    margin: 0 auto;

    text-align: center;

    color: var(--white);
}

body.outsourcing-page .outsourcing-cta-box .section-label {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);

    border-color: rgba(255, 255, 255, 0.28);
}

body.outsourcing-page .outsourcing-cta-box .section-label::before {
    background: var(--white);
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.14);
}

body.outsourcing-page .outsourcing-cta-box h2 {
    margin: 0 0 22px;

    color: var(--white);

    font-size: clamp(2.1rem, 4.5vw, 3.8rem);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.04em;
}

body.outsourcing-page .outsourcing-cta-box p {
    max-width: 760px;

    margin: 0 auto 34px;

    color: rgba(255, 255, 255, 0.9);

    font-size: 1.12rem;
    line-height: 1.7;
}

body.outsourcing-page .outsourcing-cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

body.outsourcing-page .outsourcing-cta-actions .primary-button {
    background: var(--white);
    color: var(--primary);

    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

body.outsourcing-page .outsourcing-cta-actions .primary-button:hover {
    background: var(--gray-light);
    color: var(--primary);
}

body.outsourcing-page .outsourcing-cta-actions .secondary-button {
    background: transparent;
    color: var(--white);

    border: 1px solid rgba(255, 255, 255, 0.5);
}

body.outsourcing-page .outsourcing-cta-actions .secondary-button:hover {
    background: rgba(255, 255, 255, 0.12);
}


/* =========================================================
   FOOTER SIMPLES OUTSOURCING
========================================================= */

body.outsourcing-page .site-footer-simple {
    padding: 28px 0;

    background: #1f1f1f;
    color: rgba(255, 255, 255, 0.78);

    text-align: center;
}

body.outsourcing-page .site-footer-simple p {
    margin: 0;

    font-size: 0.95rem;
}

/* =========================================================
   OUTSOURCING PAGE - RESPONSIVO
========================================================= */

@media (max-width: 1100px) {
    body.outsourcing-page .outsourcing-benefits-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    body.outsourcing-page .outsourcing-business-content,
    body.outsourcing-page .outsourcing-intro-grid,
    body.outsourcing-page .outsourcing-process-grid {
        gap: 42px;
    }
}

@media (max-width: 900px) {
    body.outsourcing-page .outsourcing-business-call,
    body.outsourcing-page .outsourcing-highlights,
    body.outsourcing-page .outsourcing-intro,
    body.outsourcing-page .outsourcing-benefits,
    body.outsourcing-page .outsourcing-process,
    body.outsourcing-page .outsourcing-cta {
        padding: 70px 0;
    }

    body.outsourcing-page .outsourcing-business-content,
    body.outsourcing-page .outsourcing-intro-grid,
    body.outsourcing-page .outsourcing-process-grid {
        grid-template-columns: 1fr;
    }

    body.outsourcing-page .outsourcing-business-text,
    body.outsourcing-page .outsourcing-intro-content,
    body.outsourcing-page .outsourcing-process-content {
        text-align: center;
    }

    body.outsourcing-page .outsourcing-business-text h2,
    body.outsourcing-page .outsourcing-intro-content h2,
    body.outsourcing-page .outsourcing-process-content h2 {
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
    }

    body.outsourcing-page .outsourcing-intro-content p,
    body.outsourcing-page .outsourcing-process-content p {
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
    }

    body.outsourcing-page .outsourcing-highlights-grid {
        grid-template-columns: 1fr;
    }

    body.outsourcing-page .outsourcing-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.outsourcing-page .outsourcing-benefit-card {
        min-height: 250px;
    }
}

@media (max-width: 640px) {
    body.outsourcing-page .outsourcing-business-call,
    body.outsourcing-page .outsourcing-highlights,
    body.outsourcing-page .outsourcing-intro,
    body.outsourcing-page .outsourcing-benefits,
    body.outsourcing-page .outsourcing-process,
    body.outsourcing-page .outsourcing-cta {
        padding: 58px 0;
    }

    body.outsourcing-page .outsourcing-business-card {
        padding: 26px 24px 26px 68px;
    }

    body.outsourcing-page .outsourcing-business-card::before {
        left: 24px;
    }

    body.outsourcing-page .outsourcing-highlights-grid,
    body.outsourcing-page .outsourcing-benefits-grid {
        grid-template-columns: 1fr;
    }

    body.outsourcing-page .outsourcing-benefit-card {
        min-height: initial;
    }

    body.outsourcing-page .outsourcing-step {
        grid-template-columns: 1fr;
        text-align: center;
    }

    body.outsourcing-page .outsourcing-step > span {
        margin: 0 auto;
    }

    body.outsourcing-page .outsourcing-cta-actions .primary-button,
    body.outsourcing-page .outsourcing-cta-actions .secondary-button {
        width: 100%;
        max-width: 340px;
    }
}

/* =========================================================
   SERVICES PAGE - PÁGINA SERVIÇOS TECNOLÓGICOS
   Seguro para home e outsourcing: tudo preso em body.services-page
========================================================= */

body.services-page {
    background: var(--white);
}

/* Labels */

body.services-page .services-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 16px;
    padding: 8px 16px;

    border-radius: 999px;

    background: rgba(86, 16, 9, 0.08);
    color: var(--primary);

    border: 1px solid rgba(86, 16, 9, 0.18);

    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

body.services-page .services-label::before {
    content: "";
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--primary);

    box-shadow: 0 0 0 5px rgba(86, 16, 9, 0.12);
}


/* =========================================================
   HERO SERVIÇOS
========================================================= */

body.services-page .services-hero {
    position: relative;

    padding: 150px 0 90px;

    background:
        radial-gradient(circle at top right, rgba(86, 16, 9, 0.10), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);

    overflow: hidden;
}

body.services-page .services-hero-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 56px;
    align-items: center;
}

body.services-page .services-hero-content {
    position: relative;
    z-index: 2;
}

body.services-page .services-hero-content h1 {
    margin: 0 0 24px;

    color: var(--primary);

    font-size: clamp(3rem, 7vw, 5.8rem);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -0.06em;
    text-transform: none;
}

body.services-page .services-hero-content p {
    max-width: 620px;

    margin: 0 0 34px;

    color: var(--text-light);

    font-size: 1.18rem;
    line-height: 1.75;
}

body.services-page .services-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

body.services-page .services-hero-image {
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
}

body.services-page .services-hero-image::before {
    content: "";

    position: absolute;

    width: min(520px, 80%);
    height: min(520px, 80%);

    border-radius: 50%;

    background:
        radial-gradient(circle, rgba(86, 16, 9, 0.18), transparent 68%);

    z-index: 0;
}

body.services-page .services-hero-image img {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 560px;
    height: auto;

    display: block;

    filter: drop-shadow(0 22px 38px rgba(0, 0, 0, 0.16));
}


/* =========================================================
   INTRODUÇÃO
========================================================= */

body.services-page .services-intro {
    padding: 90px 0;

    background: var(--white);
}

body.services-page .services-intro-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 54px;
    align-items: center;
}

body.services-page .services-intro-title h2 {
    margin: 0;

    color: var(--primary);

    font-size: clamp(2.1rem, 4vw, 3.45rem);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.04em;
}

body.services-page .services-intro-text {
    padding: 36px;

    border-radius: 24px;

    background: var(--gray-light);

    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

body.services-page .services-intro-text p {
    margin: 0;

    color: var(--text-light);

    font-size: 1.12rem;
    line-height: 1.75;
}


/* =========================================================
   LISTA DE SERVIÇOS
========================================================= */

body.services-page .services-list {
    padding: 95px 0;

    background: var(--gray-light);
}

body.services-page .services-section-header {
    max-width: 860px;

    margin: 0 auto 54px;

    text-align: center;
}

body.services-page .services-section-header h2 {
    margin: 0 0 18px;

    color: var(--primary);

    font-size: clamp(2.1rem, 4vw, 3.4rem);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.04em;
}

body.services-page .services-section-header p {
    max-width: 720px;

    margin: 0 auto;

    color: var(--text-light);

    font-size: 1.08rem;
    line-height: 1.7;
}

body.services-page .services-section-header strong {
    color: var(--primary);
}

body.services-page .services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

body.services-page .service-card {
    position: relative;

    min-height: 390px;

    padding: 34px 30px;

    border-radius: 24px;

    background: var(--white);

    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);

    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

body.services-page .service-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background: linear-gradient(
        90deg,
        var(--primary),
        var(--primary-dark)
    );
}

body.services-page .service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 48px rgba(86, 16, 9, 0.16);
}

body.services-page .service-card-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            var(--primary) 0%,
            var(--primary-dark) 100%
        );

    color: var(--white);
}

body.services-page .service-card-icon span {
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

body.services-page .service-card h3 {
    margin: 0 0 16px;

    color: var(--primary);

    font-size: 1.45rem;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.02em;
}

body.services-page .service-card p {
    margin: 0;

    color: var(--text-light);

    font-size: 0.98rem;
    line-height: 1.65;
}

body.services-page .service-card-link {
    display: inline-flex;
    align-items: center;

    margin-top: 18px;

    color: var(--primary);

    font-size: 0.95rem;
    font-weight: 900;
    text-decoration: none;
}

body.services-page .service-card-link::after {
    content: "→";

    margin-left: 8px;

    transition: transform 0.2s ease;
}

body.services-page .service-card-link:hover::after {
    transform: translateX(4px);
}


/* =========================================================
   CTA INTERMEDIÁRIA / GESTÃO EFICIENTE
========================================================= */

body.services-page .services-management {
    padding: 95px 0;

    background: var(--white);
}

body.services-page .services-management-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 58px;
    align-items: center;
}

body.services-page .services-management-image {
    position: relative;
}

body.services-page .services-management-image img {
    width: 100%;
    max-width: 520px;
    height: auto;

    display: block;

    border-radius: 30px;

    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.14);
}

body.services-page .services-management-content h2 {
    margin: 0 0 22px;

    color: var(--primary);

    font-size: clamp(2.1rem, 4vw, 3.45rem);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.04em;
}

body.services-page .services-management-content p {
    max-width: 650px;

    margin: 0 0 32px;

    color: var(--text-light);

    font-size: 1.12rem;
    line-height: 1.75;
}


/* =========================================================
   CTA FINAL
========================================================= */

body.services-page .services-final-cta {
    padding: 95px 0;

    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 32%),
        linear-gradient(
            135deg,
            var(--primary) 0%,
            var(--primary-dark) 100%
        );
}

body.services-page .services-final-cta-box {
    max-width: 950px;

    margin: 0 auto;

    text-align: center;

    color: var(--white);
}

body.services-page .services-final-cta-box .services-label {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);

    border-color: rgba(255, 255, 255, 0.26);
}

body.services-page .services-final-cta-box .services-label::before {
    background: var(--white);
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.14);
}

body.services-page .services-final-cta-box h2 {
    margin: 0 0 22px;

    color: var(--white);

    font-size: clamp(2.15rem, 4.4vw, 3.8rem);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.05em;
}

body.services-page .services-final-cta-box p {
    max-width: 760px;

    margin: 0 auto 34px;

    color: rgba(255, 255, 255, 0.9);

    font-size: 1.12rem;
    line-height: 1.7;
}

body.services-page .services-final-cta-box strong {
    color: var(--white);
}

body.services-page .services-final-cta-box .primary-button {
    background: var(--white);
    color: var(--primary);

    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

body.services-page .services-final-cta-box .primary-button:hover {
    background: var(--gray-light);
    color: var(--primary);
}


/* =========================================================
   CONTATO / FORMULÁRIO
========================================================= */

body.services-page .services-contact {
    padding: 95px 0;

    background: var(--gray-light);
}

body.services-page .services-contact-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 56px;
    align-items: start;
}

body.services-page .services-contact-content h2 {
    margin: 0 0 20px;

    color: var(--primary);

    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.04em;
}

body.services-page .services-contact-content > p {
    margin: 0 0 34px;

    color: var(--text-light);

    font-size: 1.1rem;
    line-height: 1.7;
}

body.services-page .services-contact-content strong {
    color: var(--primary);
}

body.services-page .services-contact-info {
    display: grid;
    gap: 22px;
}

body.services-page .services-contact-info > div {
    padding: 26px 28px;

    border-radius: 20px;

    background: var(--white);

    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

body.services-page .services-contact-info h3 {
    margin: 0 0 12px;

    color: var(--primary);

    font-size: 1.28rem;
    line-height: 1.2;
    font-weight: 900;
}

body.services-page .services-contact-info p {
    margin: 0 0 8px;

    color: var(--text-light);

    font-size: 1rem;
    line-height: 1.65;
}

body.services-page .services-contact-info p:last-child {
    margin-bottom: 0;
}

body.services-page .services-contact-info a {
    color: var(--text-light);
    text-decoration: none;

    transition: color 0.2s ease;
}

body.services-page .services-contact-info a:hover {
    color: var(--primary);
}


/* Caixa do formulário */

body.services-page .services-contact-form-box {
    padding: 38px 34px;

    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            var(--primary) 0%,
            var(--primary-dark) 100%
        );

    color: var(--white);

    box-shadow: 0 20px 50px rgba(86, 16, 9, 0.24);
}

body.services-page .services-contact-form-box h2 {
    margin: 0 0 26px;

    color: var(--white);

    font-size: 2rem;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.03em;
}

body.services-page .services-contact-form .form-group {
    margin-bottom: 18px;
}

body.services-page .services-contact-form label,
body.services-page .services-contact-form .form-label {
    display: block;

    margin-bottom: 8px;

    color: rgba(255, 255, 255, 0.92);

    font-size: 0.92rem;
    font-weight: 800;
}

body.services-page .services-contact-form input[type="text"],
body.services-page .services-contact-form input[type="tel"],
body.services-page .services-contact-form input[type="email"],
body.services-page .services-contact-form textarea {
    width: 100%;

    padding: 15px 16px;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.96);
    color: #222;

    font-size: 1rem;
    line-height: 1.4;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

body.services-page .services-contact-form textarea {
    min-height: 130px;
    resize: vertical;
}

body.services-page .services-contact-form input:focus,
body.services-page .services-contact-form textarea:focus {
    border-color: var(--white);
    background: var(--white);

    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.22);
}

body.services-page .services-contact-form small {
    display: block;

    margin-top: 7px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 0.82rem;
    line-height: 1.45;
}


/* Checkboxes */

body.services-page .checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

body.services-page .checkbox-option {
    position: relative;

    display: flex !important;
    align-items: center;
    gap: 10px;

    margin: 0 !important;
    padding: 12px 12px;

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

body.services-page .checkbox-option:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.32);
    transform: translateY(-2px);
}

body.services-page .checkbox-option input {
    width: 17px;
    height: 17px;

    flex: 0 0 auto;

    accent-color: var(--white);
}

body.services-page .checkbox-option span {
    color: rgba(255, 255, 255, 0.92);

    font-size: 0.9rem;
    line-height: 1.3;
    font-weight: 700;
}

body.services-page .services-contact-form .primary-button {
    margin-top: 8px;

    background: var(--white);
    color: var(--primary);

    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

body.services-page .services-contact-form .primary-button:hover {
    background: var(--gray-light);
    color: var(--primary);
}


/* =========================================================
   FOOTER SIMPLES
========================================================= */

body.services-page .site-footer-simple {
    padding: 28px 0;

    background: #1f1f1f;
    color: rgba(255, 255, 255, 0.78);

    text-align: center;
}

body.services-page .site-footer-simple p {
    margin: 0;

    font-size: 0.95rem;
}

/* =========================================================
   SERVICES PAGE - RESPONSIVO
========================================================= */

@media (max-width: 1100px) {
    body.services-page .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.services-page .services-hero-grid,
    body.services-page .services-intro-grid,
    body.services-page .services-management-grid,
    body.services-page .services-contact-grid {
        gap: 42px;
    }
}

@media (max-width: 900px) {
    body.services-page .services-hero {
        padding: 130px 0 70px;
    }

    body.services-page .services-hero-grid,
    body.services-page .services-intro-grid,
    body.services-page .services-management-grid,
    body.services-page .services-contact-grid {
        grid-template-columns: 1fr;
    }

    body.services-page .services-hero-content,
    body.services-page .services-intro-title,
    body.services-page .services-intro-text,
    body.services-page .services-management-content,
    body.services-page .services-contact-content {
        text-align: center;
    }

    body.services-page .services-hero-content p,
    body.services-page .services-management-content p {
        margin-left: auto;
        margin-right: auto;
    }

    body.services-page .services-hero-actions {
        justify-content: center;
    }

    body.services-page .services-hero-image {
        order: -1;
    }

    body.services-page .services-hero-image img {
        max-width: 430px;
    }

    body.services-page .services-management-image {
        text-align: center;
    }

    body.services-page .services-management-image img {
        margin: 0 auto;
        max-width: 430px;
    }

    body.services-page .services-intro,
    body.services-page .services-list,
    body.services-page .services-management,
    body.services-page .services-final-cta,
    body.services-page .services-contact {
        padding: 70px 0;
    }

    body.services-page .services-contact-info {
        max-width: 620px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    body.services-page .services-hero {
        padding: 118px 0 58px;
    }

    body.services-page .services-intro,
    body.services-page .services-list,
    body.services-page .services-management,
    body.services-page .services-final-cta,
    body.services-page .services-contact {
        padding: 58px 0;
    }

    body.services-page .services-grid {
        grid-template-columns: 1fr;
    }

    body.services-page .service-card {
        min-height: initial;
        padding: 30px 24px;
    }

    body.services-page .services-intro-text {
        padding: 28px 24px;
    }

    body.services-page .services-contact-form-box {
        padding: 30px 22px;
        border-radius: 24px;
    }

    body.services-page .checkbox-grid {
        grid-template-columns: 1fr;
    }

    body.services-page .services-hero-content h1 {
        font-size: clamp(2.8rem, 14vw, 4.4rem);
    }

    body.services-page .services-hero-content p,
    body.services-page .services-intro-text p,
    body.services-page .services-management-content p,
    body.services-page .services-final-cta-box p {
        font-size: 1rem;
    }

    body.services-page .services-hero-actions .primary-button,
    body.services-page .services-management-content .primary-button,
    body.services-page .services-final-cta-box .primary-button,
    body.services-page .services-contact-form .primary-button {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* =========================================================
   FIX HEADER - PÁGINA SERVIÇOS TECNOLÓGICOS
========================================================= */

body.services-page .site-header {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    position: fixed !important;
    top: 0 !important;
    left: 0 !important;

    width: 100% !important;
    z-index: 99999 !important;

    background: #561009 !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18) !important;
}

body.services-page .site-header .header-container,
body.services-page .header-container {
    width: min(1180px, calc(100% - 40px));
    min-height: 82px;

    margin: 0 auto;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 28px !important;
}

body.services-page .site-logo {
    display: inline-flex !important;
    align-items: center !important;
    text-decoration: none !important;
}

body.services-page .site-logo img {
    display: block !important;
    width: auto !important;
    max-height: 110px !important;
    opacity: 1 !important;
    visibility: visible !important;
}

body.services-page .main-menu {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

body.services-page .main-menu ul {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 30px !important;

    margin: 0 !important;
    padding: 0 !important;

    list-style: none !important;
}

body.services-page .main-menu li {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.services-page .main-menu a {
    display: inline-flex !important;

    color: #ffffff !important;
    text-decoration: none !important;

    font-size: 0.96rem !important;
    font-weight: 700 !important;
    line-height: 1 !important;

    opacity: 1 !important;
    visibility: visible !important;

    transition: opacity 0.2s ease;
}

body.services-page .main-menu a:hover,
body.services-page .main-menu a.active {
    color: #ffffff !important;
    opacity: 0.72 !important;
}

body.services-page .header-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 12px 22px !important;

    border-radius: 999px !important;

    background: #ffffff !important;
    color: #561009 !important;

    font-size: 0.94rem !important;
    font-weight: 800 !important;
    text-decoration: none !important;

    opacity: 1 !important;
    visibility: visible !important;
}

body.services-page .header-button:hover {
    background: #f4f4f4 !important;
    color: #561009 !important;
}

/* Garante espaço para o header fixo */
body.services-page .services-hero {
    padding-top: 160px !important;
}

/* =========================================================
   AJUSTE FINAL - HERO SERVIÇOS 100% BRANCO
========================================================= */

/* Força fundo branco na seção inteira */
body.services-page .services-hero,
body.services-page main .services-hero,
body.services-page section.services-hero {
    background: #ffffff !important;
    background-color: #ffffff !important;
    background-image: none !important;
}

/* Garante que containers internos não estejam cinza */
body.services-page .services-hero .container,
body.services-page .services-hero-grid,
body.services-page .services-hero-content,
body.services-page .services-hero-image {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

/* Remove qualquer pseudo-elemento/fundo decorativo */
body.services-page .services-hero::before,
body.services-page .services-hero::after,
body.services-page .services-hero-image::before,
body.services-page .services-hero-image::after {
    content: none !important;
    display: none !important;
    background: none !important;
}

/* Remove borda/sombra/efeito da imagem */
body.services-page .services-hero-image img {
    background: transparent !important;
    background-color: transparent !important;

    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    filter: none !important;

    border-radius: 0 !important;
}

/* =========================================================
   FIX DEFINITIVO - CARROSSEL SERVIÇOS
========================================================= */

body.services-page .services-intro-carousel-section {
    padding: 90px 0 !important;
    background: #561009 !important;
    background-color: #561009 !important;
    background-image: none !important;
    color: #ffffff !important;
}

body.services-page .services-intro-carousel-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 56px !important;
    align-items: center !important;
}

body.services-page .services-intro-carousel-content h2 {
    color: #ffffff !important;
}

body.services-page .services-intro-carousel-content p {
    color: rgba(255, 255, 255, 0.88) !important;
}


/* Estrutura principal do carrossel */
body.services-page .services-tech-carousel {
    position: relative !important;
    width: 100% !important;
    max-width: 620px !important;
    margin: 0 auto !important;

    overflow: hidden !important;

    border-radius: 28px !important;
    background: rgba(255, 255, 255, 0.08) !important;

    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28) !important;
}


/* Área fixa do carrossel */
body.services-page .services-tech-carousel-track {
    position: relative !important;
    width: 100% !important;

    aspect-ratio: 16 / 11 !important;

    overflow: hidden !important;
}


/* Cada slide fica exatamente no mesmo lugar */
body.services-page .services-tech-slide {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    opacity: 0 !important;
    visibility: hidden !important;

    transition: opacity 0.6s ease, visibility 0.6s ease !important;
}


/* Só o slide ativo aparece */
body.services-page .services-tech-slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 2 !important;
}


/* Todas as imagens ficam do mesmo tamanho */
body.services-page .services-tech-slide img {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center !important;

    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}


/* Bolinhas */
body.services-page .services-tech-carousel-dots {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 18px !important;

    z-index: 10 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
}

body.services-page .services-tech-carousel-dots button {
    width: 11px !important;
    height: 11px !important;

    padding: 0 !important;
    border: 0 !important;
    border-radius: 999px !important;

    background: rgba(255, 255, 255, 0.5) !important;

    cursor: pointer !important;
}

body.services-page .services-tech-carousel-dots button.active {
    width: 30px !important;
    background: #ffffff !important;
}


/* Responsivo */
@media (max-width: 980px) {
    body.services-page .services-intro-carousel-grid {
        grid-template-columns: 1fr !important;
        gap: 42px !important;
    }

    body.services-page .services-intro-carousel-content {
        text-align: center !important;
        max-width: 760px !important;
        margin: 0 auto !important;
    }

    body.services-page .services-tech-carousel {
        max-width: 720px !important;
    }
}

@media (max-width: 640px) {
    body.services-page .services-intro-carousel-section {
        padding: 70px 0 !important;
    }

    body.services-page .services-tech-carousel-track {
        aspect-ratio: 4 / 3 !important;
    }
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: #1f0705;
    color: #ffffff;
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand p {
    max-width: 340px;
    margin: 22px 0 0;

    color: rgba(255, 255, 255, 0.72);
    font-size: 0.98rem;
    line-height: 1.7;
}

.footer-logo img {
    display: block;
    max-width: 170px;
    height: auto;
}

.footer-column h3 {
    margin: 0 0 20px;

    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;

    font-size: 0.96rem;
    line-height: 1.4;

    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-column a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-bottom {
    margin-top: 58px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-inner {
    min-height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.62);
    font-size: 0.92rem;
    text-align: center;
}


/* Responsivo */

@media (max-width: 980px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 42px;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding-top: 56px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-brand,
    .footer-column {
        text-align: center;
    }

    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-logo img {
        margin: 0 auto;
    }

    .footer-bottom {
        margin-top: 44px;
    }
}

