/* ===================================
   PENSITEC PRO 2025 - Variables and Reset
   =================================== */
:root {
    /* PENSITEC PRO 2025 Color Palette */
    --verde-institucional: #2BAE66;
    --verde-institucional-dark: #228B51;
    --azul-petroleo: #1F3B4D;
    --azul-petroleo-light: #2A4F66;
    --amarelo-ouro: #F4B400;
    --amarelo-ouro-dark: #D99E00;
    --cinza-claro: #F4F5F7;
    --cinza-grafite: #2A2A2A;
    --azul-secundario: #5B7FA3;
    --azul-secundario-light: #7A9BBD;
    
    /* Semantic Colors */
    --primary: var(--verde-institucional);
    --primary-dark: var(--verde-institucional-dark);
    --secondary: var(--azul-secundario);
    --accent: var(--amarelo-ouro);
    --accent-dark: var(--amarelo-ouro-dark);
    --dark-bg: var(--azul-petroleo);
    --dark-bg-light: var(--azul-petroleo-light);
    --light-bg: var(--cinza-claro);
    --text-dark: var(--cinza-grafite);
    --text-light: #FFFFFF;
    
    /* Typography */
    --font-primary: 'Inter', 'Nunito Sans', sans-serif;
    --font-secondary: 'Inter', 'Nunito Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 80px;
    --section-padding-mobile: 60px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(31, 59, 77, 0.08);
    --shadow-md: 0 4px 16px rgba(31, 59, 77, 0.12);
    --shadow-lg: 0 8px 24px rgba(31, 59, 77, 0.16);
}

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

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: #FFFFFF;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--azul-petroleo);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: var(--section-padding) 0;
}

.text-highlight {
    color: var(--accent);
    font-weight: 600;
}

/* ===================================
   Navbar
   =================================== */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: var(--dark-bg);
    box-shadow: var(--shadow-md);
}

.navbar.scrolled {
    background: var(--dark-bg);
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary) !important;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.2rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent) !important;
}

.btn-primary-custom {
    background: var(--accent);
    color: var(--text-dark);
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 12px rgba(244, 180, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(244, 180, 0, 0.4);
    color: var(--text-dark);
}

.btn-secondary-custom {
    background: transparent;
    color: var(--text-light);
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--text-light);
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background: var(--text-light);
    color: var(--dark-bg);
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-light) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            rgba(43, 174, 102, 0.03) 35px,
            rgba(43, 174, 102, 0.03) 70px
        );
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-uvp {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--accent);
    border-radius: 8px;
    font-weight: 500;
}

.hero-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.hero-benefits li {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.hero-benefits li i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-right: 1rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.hero-icon {
    font-size: 20rem;
    color: var(--primary);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ===================================
   Stats Section
   =================================== */
.stats-section {
    background: var(--light-bg);
    padding: 60px 0;
}

.stat-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 500;
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--azul-petroleo);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-dark);
    opacity: 0.7;
    letter-spacing: 0.01em;
}

.bg-dark-section .section-title {
    color: var(--text-light);
}

.bg-dark-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* ===================================
   Por Que Escolher Section
   =================================== */
.porque-section {
    background: #FFFFFF;
}

.porque-card {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 12px;
    height: 100%;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary);
}

.porque-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--accent);
}

.porque-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.porque-icon i {
    font-size: 2rem;
    color: var(--text-light);
}

.porque-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--azul-petroleo);
}

.porque-text {
    color: var(--text-dark);
    text-align: center;
    opacity: 0.85;
}




/* ===================================
   Sobre Section (Ampliado)
   =================================== */
.sobre-section {
    background: var(--dark-bg);
    color: var(--text-light);
}

.sobre-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sobre-historia {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.sobre-destaque {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent);
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(244, 180, 0, 0.1);
    border-left: 4px solid var(--accent);
    border-radius: 8px;
}

.sobre-fundador {
    margin: 2.5rem 0 1rem;
    padding: 2rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.sobre-fundador-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.sobre-fundador-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.sobre-fundador-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sobre-fundador-list li {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
}

.sobre-fundador-list li i {
    color: var(--accent);
    margin-right: 0.7rem;
}

.sobre-cards-wrapper {
    margin-top: 3rem;
}

.sobre-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sobre-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.sobre-card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.sobre-card-icon i {
    font-size: 1.8rem;
    color: var(--text-light);
}

.sobre-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-light);
}

.sobre-card-text {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.sobre-list {
    list-style: none;
    padding: 0;
}

.sobre-list li {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.sobre-list li i {
    color: var(--primary);
    margin-right: 0.8rem;
}

/* ===================================
   Setores Atendidos Section
   =================================== */
.setores-section {
    background: var(--light-bg);
}

.setor-card {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--secondary);
}

.setor-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--accent);
}

.setor-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.setor-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--azul-petroleo);
}

.setor-desafio {
    font-size: 0.95rem;
    color: var(--text-dark);
    opacity: 0.7;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.setor-solucao {
    color: var(--text-dark);
    opacity: 0.85;
}

/* ===================================
   Serviços Section
   =================================== */
.servicos-section {
    background: radial-gradient(circle at top right, rgba(30, 60, 86, 0.06), transparent 55%), #FFFFFF;
    position: relative;
}

.servico-card {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(17, 36, 52, 0.08);
    border-top: 4px solid;
}

.servico-card.border-verde {
    border-top-color: var(--primary);
}

.servico-card.border-azul {
    border-top-color: var(--secondary);
}

.servico-card.border-ouro {
    border-top-color: var(--accent);
}

.servico-card.border-petroleo {
    border-top-color: var(--azul-petroleo);
}

.servico-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.servico-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.servico-icon i {
    font-size: 2.5rem;
    color: var(--text-light);
}

.servico-title {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
    color: var(--azul-petroleo);
}

.servico-descricao {
    font-size: 0.98rem;
    color: var(--text-dark);
    opacity: 0.75;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.servico-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.servico-list li {
    color: var(--text-dark);
    opacity: 0.85;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

.servico-list li i {
    color: var(--primary);
    margin-right: 0.8rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.servico-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.servico-link:hover {
    color: inherit;
    text-decoration: none;
}

.servico-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 1rem;
}

.servicos-detalhes {
    margin-top: 3.5rem;
    display: grid;
    gap: 2.5rem;
}

.servico-detalhe {
    background: #ffffff;
    border: 1px solid rgba(17, 36, 52, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.servico-detalhe h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--azul-petroleo);
}

.servico-detalhe h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--azul-petroleo);
}

.servico-detalhe ul {
    list-style: none;
    padding: 0;
}

.servico-detalhe ul li {
    margin-bottom: 0.6rem;
    color: var(--text-dark);
    opacity: 0.85;
}

.btn-servico {
    background: var(--primary);
    color: var(--text-light);
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-servico:hover {
    background: var(--primary-dark);
    transform: translateX(5px);
    color: var(--text-light);
}

/* ===================================
   Cases Section
   =================================== */
.cases-section {
    background: var(--light-bg);
}

.case-card {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid var(--accent);
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.case-setor {
    display: inline-block;
    background: var(--accent);
    color: var(--text-dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.case-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--azul-petroleo);
}

.case-item {
    margin-bottom: 1.5rem;
}

.case-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.case-text {
    color: var(--text-dark);
    opacity: 0.85;
}

.blog-cta {
    background: rgba(43, 174, 102, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px dashed var(--primary);
}

.blog-cta h4 {
    color: var(--azul-petroleo);
    margin-bottom: 1rem;
}

.blog-cta p {
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 0;
}

/* ===================================
   Parcerias Section
   =================================== */
.parcerias-section {
    background: #FFFFFF;
}

.parceria-card {
    background: #ffffff;
    border: 1px solid rgba(17, 36, 52, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.parceria-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.parceria-logo {
    max-width: 140px;
    max-height: 60px;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.parceria-card:hover .parceria-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.certificacoes-wrapper {
    margin-bottom: 4rem;
}

.cert-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.cert-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.cert-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.cert-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--azul-petroleo);
    margin: 0;
}

.depoimentos-wrapper {
    margin-top: 3rem;
}

.depoimento-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    height: 100%;
    border-left: 4px solid var(--accent);
    position: relative;
}

.depoimento-icon {
    font-size: 2rem;
    color: var(--accent);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.depoimento-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    opacity: 0.85;
}

.depoimento-autor {
    font-weight: 700;
    color: var(--azul-petroleo);
    margin-bottom: 0.3rem;
}

.depoimento-cargo {
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.7;
}




/* ===================================
   Planos Section
   =================================== */
.planos-section {
    background: radial-gradient(circle at top left, rgba(30, 60, 86, 0.08), transparent 55%), var(--light-bg);
}

.plano-card {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border: 1px solid rgba(17, 36, 52, 0.1);
}

.plano-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.plano-card.plano-destaque {
    border-color: var(--accent);
    box-shadow: 0 10px 28px rgba(244, 180, 0, 0.2);
}

.plano-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.plano-nome {
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--azul-petroleo);
    margin-bottom: 1rem;
    text-align: center;
}

.plano-preco {
    text-align: center;
    margin-bottom: 1rem;
}

.preco-valor {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
}

.preco-periodo {
    font-size: 1rem;
    color: var(--text-dark);
    opacity: 0.7;
}

.plano-horas {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 1.4rem;
    font-weight: 600;
}

.plano-para {
    text-align: center;
    color: var(--text-dark);
    opacity: 0.75;
    margin-top: -0.6rem;
    margin-bottom: 2rem;
    font-size: 0.93rem;
}

.plano-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.plano-features li {
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

.plano-features li i {
    margin-right: 0.8rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.plano-features li .fa-check {
    color: var(--primary);
}

.plano-features li .fa-times {
    color: #dc3545;
}

.plano-features li.disabled {
    opacity: 0.5;
}

.plano-bonus {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
}

.plano-bonus p {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.plano-bonus strong {
    color: var(--azul-petroleo);
}

.btn-plano {
    width: 100%;
    background: var(--primary);
    color: var(--text-light);
    padding: 0.8rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-plano:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    color: var(--text-light);
}

.btn-plano-destaque {
    background: var(--accent);
    color: var(--text-dark);
}

.btn-plano-destaque:hover {
    background: var(--accent-dark);
    color: var(--text-dark);
}

/* ===================================
   Contato Section
   =================================== */
.contato-section {
    background: #FFFFFF;
}

.contato-form-wrapper {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contato-form .form-label {
    font-weight: 600;
    color: var(--azul-petroleo);
    margin-bottom: 0.5rem;
}

.contato-form .form-control {
    padding: 0.8rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contato-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(43, 174, 102, 0.25);
}

.contato-info {
    padding: 2rem;
}

.contato-info-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--azul-petroleo);
    margin-bottom: 2rem;
}

.contato-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contato-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-right: 1.5rem;
    margin-top: 0.3rem;
}

.contato-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--azul-petroleo);
    margin-bottom: 0.3rem;
}

.contato-item p {
    color: var(--text-dark);
    opacity: 0.85;
    margin: 0;
}

.contato-social h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--azul-petroleo);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ===================================
   Privacidade Section
   =================================== */
.privacidade-section {
    background: var(--light-bg);
}

.privacidade-content {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.privacidade-content h3 {
    color: var(--azul-petroleo);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.privacidade-content h3:first-of-type {
    margin-top: 0;
}

.privacidade-content p {
    color: var(--text-dark);
    opacity: 0.85;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.privacidade-content ul {
    margin-bottom: 1.5rem;
}

.privacidade-content ul li {
    color: var(--text-dark);
    opacity: 0.85;
    margin-bottom: 0.5rem;
}

.dpo-contact {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    margin: 2rem 0;
}

.dpo-contact strong {
    color: var(--azul-petroleo);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 60px 0 30px;
}

.footer-brand {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form .form-control {
    flex: 1;
    padding: 0.8rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
    outline: none;
}

.btn-newsletter {
    background: var(--accent);
    color: var(--text-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-newsletter:hover {
    background: var(--accent-dark);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--text-dark);
    transform: translateY(-3px);
}

/* ===================================
   Cookie Banner
   =================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 1.5rem;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: var(--accent);
    color: var(--text-dark);
}

.btn-cookie-accept:hover {
    background: var(--accent-dark);
}

.btn-cookie-manage {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-cookie-manage:hover {
    background: var(--text-light);
    color: var(--dark-bg);
}

/* ===================================
   Back to Top Button
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--text-light);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(43, 174, 102, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-icon {
        font-size: 10rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    section {
        padding: var(--section-padding-mobile) 0;
    }
    
    .cta-flutuante {
        bottom: 20px;
        right: 20px;
    }
    
    .btn-cta-flutuante {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .btn-cookie {
        width: 100%;
    }
    
    .cta-flutuante {
        bottom: 15px;
        right: 15px;
        left: 15px;
    }
    
    .btn-cta-flutuante {
        width: 100%;
        justify-content: center;
    }
    
    .back-to-top {
        bottom: 80px;
        right: 15px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-benefits li {
        font-size: 0.95rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .sobre-content,
    .privacidade-content {
        padding: 2rem 1.5rem;
    }
}

/* ===================================
   Utility Classes
   =================================== */
.bg-light-section {
    background: var(--light-bg);
}

.bg-dark-section {
    background: var(--dark-bg);
    color: var(--text-light);
}

.bg-white-section {
    background: #FFFFFF;
}

.text-primary {
    color: var(--primary) !important;
}

.text-accent {
    color: var(--accent) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}


/* ===================================
   Legacy content consolidation
   =================================== */
.brand-logo {
    height: 32px;
    width: auto;
    margin-right: 10px;
}

.legacy-section {
    margin-top: 60px;
    padding: 30px;
    border-radius: 16px;
    background: rgba(31, 59, 77, 0.05);
    box-shadow: var(--shadow-sm);
}

.legacy-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--azul-petroleo);
}

.legacy-card {
    padding: 20px;
    border-radius: 12px;
    background: #FFFFFF;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.legacy-card h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.accordion-button {
    font-weight: 600;
}

.accordion-body h4 {
    margin-top: 15px;
    font-size: 1.05rem;
}

/* ===================================
   Portal do Cliente Section
   =================================== */
.portal-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.portal-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portal-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.portal-icon {
    font-size: 2.6rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.portal-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--azul-petroleo);
}

.portal-text {
    color: var(--text-dark);
    opacity: 0.85;
    margin-bottom: 1.5rem;
}

/* ===================================
   Soluções Section
   =================================== */
.solucoes-section {
    padding: 80px 0;
    background: radial-gradient(circle at top left, rgba(30, 60, 86, 0.08), transparent 55%), #ffffff;
    position: relative;
}

.solucao-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(17, 36, 52, 0.08);
    border-top: 4px solid var(--secondary);
}

.solucao-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--accent);
}

.solucao-icon {
    font-size: 2.6rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.solucao-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--azul-petroleo);
}

.solucao-text {
    color: var(--text-dark);
    opacity: 0.85;
    margin-bottom: 1.2rem;
}

.solucao-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solucao-list li {
    margin-bottom: 0.6rem;
    color: var(--text-dark);
    opacity: 0.85;
}

.solucao-list li::before {
    content: "•";
    color: var(--secondary);
    margin-right: 0.6rem;
}

/* ===================================
   Conteúdos Section
   =================================== */
.conteudos-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.conteudo-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    height: 100%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.conteudo-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.conteudo-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--azul-petroleo);
}

.conteudo-text {
    color: var(--text-dark);
    opacity: 0.85;
    margin-bottom: 1.5rem;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.newsletter-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.newsletter-inline {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.newsletter-inline .form-control {
    max-width: 420px;
    min-width: 260px;
}

@media (max-width: 768px) {
    .brand-logo {
        height: 26px;
    }
    .newsletter-inline {
        flex-direction: column;
    }
    .newsletter-inline .form-control {
        width: 100%;
        max-width: 100%;
    }
}

/* ===================================
   Chat (n8n) - posicionamento esquerdo
   =================================== */
.chat-window-wrapper {
    left: var(--chat--spacing) !important;
    right: auto !important;
}

.chat-window-wrapper .chat-window {
    transform-origin: 0 100% !important;
}

.chat-window-wrapper .chat-window-toggle {
    margin-left: 0 !important;
    margin-right: auto !important;
}

.chat-window-wrapper .chat-window-toggle {
    background: transparent !important;
    box-shadow: none !important;
    background-image: url('/img/avatar-menina-2.png') !important;
    background-size: cover !important;
    background-position: center !important;
}

.chat-window-wrapper .chat-window-toggle img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    display: block !important;
}

.chat-window-wrapper .chat-window-toggle svg {
    display: none !important;
}

.chat-window-wrapper .chat-window-toggle span,
.chat-window-wrapper .chat-window-toggle p,
.chat-window-wrapper .chat-window-toggle .chat-window-toggle__label,
.chat-window-wrapper .chat-window-toggle .chat-window-toggle__text,
.chat-window-wrapper .chat-window-toggle .chat-window-toggle__badge,
.chat-window-wrapper .chat-window-toggle .chat-window-toggle__message {
    display: none !important;
}

/* ===================================
   Diferenciall-inspired Layout
   =================================== */
body.layout-diferenciall {
    background: #ffffff;
}

.hero-diferenciall {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(120deg, rgba(8, 20, 32, 0.95), rgba(14, 40, 64, 0.95));
    color: #ffffff;
    overflow: hidden;
}

.hero-diferenciall .hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(32, 122, 130, 0.35), transparent 55%),
                radial-gradient(circle at bottom right, rgba(244, 180, 0, 0.25), transparent 55%);
    opacity: 0.8;
    z-index: 0;
    pointer-events: none;
}

.hero-diferenciall .container {
    position: relative;
    z-index: 1;
}

.hero-diferenciall .hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.2rem;
}

.hero-diferenciall .hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-diferenciall .hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-diferenciall .hero-cta .btn {
    margin-right: 0.8rem;
}

.hero-stack {
    display: grid;
    gap: 1rem;
}

.hero-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 1.5rem;
}

.hero-card span {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.hero-card h3 {
    margin-top: 0.6rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.empresa-section {
    padding: 90px 0;
    background: #ffffff;
}

.empresa-text {
    color: var(--text-dark);
    opacity: 0.85;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.empresa-mvv {
    display: grid;
    gap: 1.2rem;
    margin-top: 2rem;
}

.empresa-mvv h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--azul-petroleo);
}

.empresa-mvv p {
    color: var(--text-dark);
    opacity: 0.8;
    margin: 0;
}

.empresa-box {
    background: rgba(17, 36, 52, 0.06);
    border: 1px solid rgba(17, 36, 52, 0.12);
    padding: 2.5rem;
    border-radius: 16px;
}

.empresa-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--azul-petroleo);
}

.empresa-box p {
    color: var(--text-dark);
    opacity: 0.85;
    margin-bottom: 1.5rem;
}

.numeros-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.numero-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.numero-card h3 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.6rem;
}

.numero-card p {
    color: var(--text-dark);
    opacity: 0.75;
    margin: 0;
}

@media (max-width: 992px) {
    .hero-diferenciall {
        padding: 140px 0 80px;
    }
    .hero-diferenciall .hero-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .hero-diferenciall .hero-title {
        font-size: 2rem;
    }
    .hero-diferenciall .hero-cta .btn {
        margin-bottom: 0.8rem;
    }
}

/* ===================================
   Service Pages
   =================================== */
.service-hero {
    padding: 160px 0 80px;
    background: linear-gradient(120deg, rgba(8, 20, 32, 0.96), rgba(12, 36, 58, 0.96));
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(32, 122, 130, 0.35), transparent 55%),
                radial-gradient(circle at bottom right, rgba(244, 180, 0, 0.25), transparent 55%);
    opacity: 0.85;
    pointer-events: none;
}

.service-hero .container {
    position: relative;
    z-index: 1;
}

.service-hero .service-kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.service-hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    max-width: 720px;
}

.service-hero p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 640px;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.service-hero .btn-primary-custom {
    padding: 0.9rem 2.2rem;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-section {
    padding: 90px 0;
    background: #f5f8fb;
}

.service-section .row {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 24px 60px rgba(10, 25, 41, 0.08);
}

.service-section h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.9rem;
    color: var(--azul-petroleo);
    position: relative;
    padding-left: 1rem;
}

.service-section h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.2rem;
    width: 4px;
    height: 1.4rem;
    background: var(--primary);
    border-radius: 999px;
}

.service-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 1.6rem 0 0.5rem;
    color: var(--azul-petroleo);
}

.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-list li {
    margin-bottom: 0.6rem;
    color: var(--text-dark);
    opacity: 0.85;
    position: relative;
    padding-left: 1.3rem;
}

.service-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    position: absolute;
    left: 0;
    top: 0.6rem;
}

.service-box {
    background: #ffffff;
    border: 1px solid rgba(17, 36, 52, 0.08);
    padding: 2.5rem;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(10, 25, 41, 0.08);
    position: relative;
    overflow: hidden;
}

.service-box h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--azul-petroleo);
}

.service-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), rgba(43, 174, 102, 0.2));
}

.service-box ul li {
    position: relative;
    padding-left: 1.3rem;
}

.service-box ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    position: absolute;
    left: 0;
    top: 0.6rem;
}

.service-box .btn-servico {
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.service-box + .service-box {
    margin-top: 1.5rem;
}

.service-cta {
    margin-top: 1.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(17, 36, 52, 0.12);
    font-weight: 600;
    color: var(--text-dark);
}

.service-cta a {
    color: var(--primary);
    text-decoration: none;
}

.service-cta a:hover {
    text-decoration: underline;
}

.service-box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-box ul li {
    margin-bottom: 0.6rem;
    color: var(--text-dark);
    opacity: 0.85;
}

@media (max-width: 768px) {
    .service-hero {
        padding: 140px 0 60px;
    }
    .service-hero h1 {
        font-size: 2.2rem;
    }
    .service-section {
        padding: 70px 0;
    }
    .service-section .row {
        padding: 1.5rem;
    }
}
