/*
Theme Name: 4Infra Theme
Theme URI: https://luizreimann.dev
Author: Luiz Reimann
Author URI: https://luizreimann.dev
Description: Tema personalizado para 4Infra Strategy - Infraestrutura, Tecnologia e Inovação
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
Text Domain: 4infra-theme
Tags: custom-menu, custom-logo, featured-images, full-width-template
*/

/* ========================================
   FONT-FACE: APTOS
   ======================================== */
@font-face {
    font-family: 'Aptos';
    src: url('assets/fonts/aptos/Aptos-Light.woff2') format('woff2'),
         url('assets/fonts/aptos/Aptos-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aptos';
    src: url('assets/fonts/aptos/Aptos-Light-Italic.woff2') format('woff2'),
         url('assets/fonts/aptos/Aptos-Light-Italic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Aptos';
    src: url('assets/fonts/aptos/Aptos.woff2') format('woff2'),
         url('assets/fonts/aptos/Aptos.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aptos';
    src: url('assets/fonts/aptos/Aptos-Italic.woff2') format('woff2'),
         url('assets/fonts/aptos/Aptos-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Aptos';
    src: url('assets/fonts/aptos/Aptos-SemiBold.woff2') format('woff2'),
         url('assets/fonts/aptos/Aptos-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aptos';
    src: url('assets/fonts/aptos/Aptos-SemiBold-Italic.woff2') format('woff2'),
         url('assets/fonts/aptos/Aptos-SemiBold-Italic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Aptos';
    src: url('assets/fonts/aptos/Aptos-Bold.woff2') format('woff2'),
         url('assets/fonts/aptos/Aptos-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aptos';
    src: url('assets/fonts/aptos/Aptos-Bold-Italic.woff2') format('woff2'),
         url('assets/fonts/aptos/Aptos-Bold-Italic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Aptos';
    src: url('assets/fonts/aptos/Aptos-ExtraBold.woff2') format('woff2'),
         url('assets/fonts/aptos/Aptos-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aptos';
    src: url('assets/fonts/aptos/Aptos-Black.woff2') format('woff2'),
         url('assets/fonts/aptos/Aptos-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aptos Display';
    src: url('assets/fonts/aptos/Aptos-Display.woff2') format('woff2'),
         url('assets/fonts/aptos/Aptos-Display.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aptos Display';
    src: url('assets/fonts/aptos/Aptos-Display-Bold.woff2') format('woff2'),
         url('assets/fonts/aptos/Aptos-Display-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ========================================
   RESET & BASE
   ======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #3D2C5E;
    --color-primary-light: #5B4B6E;
    --color-primary-dark: #2A1D42;
    --color-accent: #E06F11;
    --color-accent-dark: #C45F0E;
    --color-dark: #1A1A2E;
    --color-white: #FFFFFF;
    --color-light-gray: #F5F5F5;
    --color-medium-gray: #E0E0E0;
    --color-text: #333333;
    --color-text-light: #666666;
    --font-primary: 'Aptos', sans-serif;
    --font-secondary: 'Aptos', sans-serif;
    --container-max: 1200px;
    --header-height: 80px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
    overflow-x: hidden;
}

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

.brand {
    font-family: 'Georgia', serif;
    font-weight: 700;
    font-style: normal;
}

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

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

ul, ol {
    list-style: none;
}

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

/* ========================================
   HEADER
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--color-primary);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.site-logo img {
    height: 45px;
    width: auto;
}

.main-navigation ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-navigation a {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-white);
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.main-navigation a:hover {
    opacity: 0.8;
}

.main-navigation .nav-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

/* Underline style for nav items "sobre", "soluções", "cases" */
.main-navigation li.nav-underline a {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 11px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: lowercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(224, 111, 17, 0.4);
}

.btn-header {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    padding: 10px 22px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: lowercase;
    border-radius: 8px;
}

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

.btn-header img {
    width: 16px;
    height: 16px;
    transition: filter 0.3s ease;
}

.btn-header:hover img {
    filter: invert(18%) sepia(30%) saturate(1800%) hue-rotate(240deg) brightness(80%) contrast(95%);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

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

.btn-white:hover {
    background-color: var(--color-light-gray);
}

.btn-hero {
    background-color: var(--color-accent);
    color: var(--color-white);
    text-transform: lowercase;
    border-radius: 8px;
    padding: 12px 30px;
}

.btn-hero:hover {
    background-color: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(224, 111, 17, 0.4);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-white);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ========================================
   HERO SECTION (FRONT PAGE)
   ======================================== */
.hero-section {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    margin-top: var(--header-height);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 550px;
    color: var(--color-white);
    padding: 60px 0;
}

.hero-content h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 15px;
    margin-bottom: 25px;
    opacity: 0.95;
    line-height: 1.7;
}

/* ========================================
   CRIAMOS VALOR SECTION
   ======================================== */
.criamos-valor-section {
    padding: 60px 0 30px;
    background-color: var(--color-white);
    text-align: center;
}

.criamos-valor-section .section-icon {
    width: 35px;
    height: 35px;
    margin: 0 auto 12px;
}

.criamos-valor-section h2 {
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.criamos-valor-section > .container > p {
    font-size: 14px;
    color: var(--color-text-light);
    max-width: 650px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* VALOR label bar */
.valor-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.valor-label span {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.valor-label::before,
.valor-label::after {
    content: '';
    flex: 1;
    max-width: 200px;
    height: 1px;
    background-color: var(--color-medium-gray);
}

/* VALOR SLIDER - interactive expanding cards */
.valor-slider {
    --vs-gap: 10px;
    --vs-speed: 0.5s;
    --vs-easing: linear(
        0 0%, 0.1538 4.09%, 0.2926 8.29%, 0.4173 12.63%,
        0.5282 17.12%, 0.6255 21.77%, 0.7099 26.61%, 0.782 31.67%,
        0.8425 37%, 0.8887 42.23%, 0.9257 47.79%, 0.9543 53.78%,
        0.9752 60.32%, 0.9883 67.11%, 0.9961 75%, 1 100%
    );

    display: grid;
    container-type: inline-size;
    grid-template-columns: 5fr 1fr 1fr 1fr;
    gap: var(--vs-gap);
    list-style-type: none;
    padding: 0;
    height: clamp(280px, 38dvh, 380px);
    margin: 0;
    width: 100%;
    transition: grid-template-columns var(--vs-speed) var(--vs-easing);
}

/* --- Card colors (each has its own orange tone) --- */
.valor-slider .valor-item-1 { background: var(--color-primary); }
.valor-slider .valor-item-2 { background: #D4882E; }
.valor-slider .valor-item-3 { background: #D9973F; }
.valor-slider .valor-item-4 { background: #E8B876; }

/* --- li base --- */
.valor-slider li {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
}

/* --- Article inside li --- */
.valor-slider li article {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    color: var(--color-white);
    font-family: var(--font-secondary);
    text-align: center;
}

/* --- Number (always large, top center, white circle) --- */
.valor-slider li .valor-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    min-width: 56px;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    background: var(--color-white);
    border-radius: 50%;
    line-height: 1;
    margin-bottom: 12px;
    flex-shrink: 0;
}

/* --- Title h3 (default: rotated for collapsed) --- */
.valor-slider li article h3 {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    margin: 0;
    color: var(--color-white);
    flex: 1;
    display: flex;
    align-items: center;
    letter-spacing: 0.02em;
}

/* --- Description (hidden by default) --- */
.valor-slider li article p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-white);
    margin: 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity var(--vs-speed) var(--vs-easing),
                max-height var(--vs-speed) var(--vs-easing);
}

/* ===== ACTIVE STATE ===== */

.valor-slider li[data-active='true'] article {
    padding: 25px 30px;
}

.valor-slider li[data-active='true'] .valor-num {
    width: 64px;
    height: 64px;
    min-width: 64px;
    font-size: 32px;
    margin-bottom: 18px;
}

.valor-slider li[data-active='true'] article h3 {
    writing-mode: horizontal-tb;
    text-orientation: initial;
    font-size: 18px;
    font-weight: 700;
    white-space: normal;
    flex: none;
    margin-bottom: 14px;
}

.valor-slider li[data-active='true'] article p {
    opacity: 0.95;
    max-height: 400px;
    font-size: 14px;
    transition-delay: calc(var(--vs-speed) * 0.2);
}

/* ========================================
   CTA BANNER (4Infra - Inovação...)
   ======================================== */
.cta-banner {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
}

.cta-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.cta-banner-content {
    position: relative;
    z-index: 3;
    color: var(--color-white);
    max-width: 500px;
}

.cta-banner-content .logo-white {
    height: 60px;
    margin: 0 0 12px;
}

.cta-banner-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.cta-banner-content p {
    font-size: 16px;
    opacity: 0.95;
    line-height: 1.6;
}

/* ========================================
   METODOLOGIAS & FERRAMENTAS SECTION
   ======================================== */
.metodologias-section {
    padding: 80px 0;
    background-color: var(--color-light-gray);
}

.metodologias-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: var(--color-primary);
    border-radius: 20px;
    padding: 45px 50px;
    color: var(--color-white);
}

.metodologias-content h2 {
    font-size: 26px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.metodologias-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.metodologias-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.metodologias-list li .check-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
}

.metodologias-image {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    position: relative;
}

.metodologias-image img {
    max-width: 80%;
    height: auto;
    transform: scale(1.6);
    position: relative;
}

/* ========================================
   4INFRA SOLUÇÕES + STATS SECTION
   ======================================== */
.solucoes-stats-section {
    padding: 80px 0 60px;
    background-color: var(--color-white);
    text-align: center;
}

.solucoes-stats-section .section-icon {
    width: 100px;
    /* height: 50px; */
    margin: 0 auto 12px;
}

.solucoes-stats-section h2 {
    font-size: 28px;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.solucoes-stats-section > .container > p {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.stat-card {
    text-align: center;
    padding: 30px 15px;
    border-radius: 16px;
    background-color: var(--color-light-gray);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-number span {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-accent);
    vertical-align: top;
}

.stat-label {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.4;
}

/* ========================================
   VÍDEOS SECTION
   ======================================== */
.videos-section {
    position: relative;
    padding: 80px 0;
    background-color: var(--color-accent);
    overflow: hidden;
}

.videos-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.videos-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.video-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
}

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

.video-card .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-card .play-btn::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent var(--color-primary);
    margin-left: 4px;
}

.video-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--color-white);
}

/* ========================================
   CLIENTES SECTION
   ======================================== */
.clientes-section {
    padding: 80px 0;
    background-color: var(--color-white);
    position: relative;
    z-index: 1;
}

.clientes-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.clientes-section .section-header .section-icon {
    width: 35px;
    height: 35px;
    margin: 0 auto 10px;
}

.clientes-section .section-header h2 {
    font-size: 28px;
    color: var(--color-dark);
}

.clientes-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px 15px;
    align-items: center;
    justify-items: center;
}

.cliente-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cliente-logo img {
    max-height: 80px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.cliente-logo img:hover {
    opacity: 1;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-circle {
    width: 100px;
    height: 100px;
    /* background-color: var(--color-white); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.footer-logo-circle .footer-logo {
    height: 100px;
}

.footer-tagline {
    font-size: 14px;
    opacity: 0.95;
    margin-bottom: 12px;
    line-height: 1.5;
}

.footer-group-logos {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.footer-group-logos img {
    height: 25px;
    opacity: 0.9;
}

.footer-col p {
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 13px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    opacity: 0.9;
}

.footer-contact li .icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    object-fit: contain;
}

.footer-address-block {
    margin-bottom: 15px;
}

.footer-address-block h5 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.footer-address-block p {
    font-size: 12px;
    opacity: 0.85;
    line-height: 1.6;
}

/* ========================================
   SOBRE NÓS - HERO
   ======================================== */
.sobre-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--header-height);
    overflow: hidden;
}

.sobre-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.sobre-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sobre-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.sobre-hero .container {
    position: relative;
    z-index: 3;
}

.sobre-hero-content {
    padding-bottom: 0;
    max-width: 500px;
}

.sobre-hero-content h1 {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
}

.sobre-hero-content p {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.6;
    opacity: 0.95;
}

/* ========================================
   SOBRE NÓS - BEM-VINDO
   ======================================== */
.sobre-bemvindo {
    padding: 80px 0;
    background-color: var(--color-white);
    text-align: center;
}

.bemvindo-icon {
    width: 30px;
    height: 30px;
    margin: 0 auto 10px;
}

.sobre-bemvindo h2 {
    font-family: var(--font-primary);
    font-size: 30px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.bemvindo-subtitle {
    display: block;
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 25px;
}

.sobre-bemvindo > .container > p {
    font-size: 15px;
    color: var(--color-text-light);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ========================================
   SOBRE NÓS - SÓCIOS
   ======================================== */
.sobre-socios {
    padding: 80px 0;
    background-color: var(--color-light-gray);
}

.socios-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}

.socios-icon {
    width: 30px;
    height: 30px;
}

.socios-header h2 {
    font-family: var(--font-primary);
    font-size: 30px;
    font-weight: 700;
    color: var(--color-dark);
}

.socios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.socio-card {
    text-align: center;
    padding: 30px 20px;
}

.socio-card-foto {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.socio-card-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.socio-card h4 {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.socio-card p {
    font-size: 12px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 6px;
}

.socio-card-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
}

.socio-card-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    transition: opacity 0.3s ease;
}

.socio-card-social a:hover {
    opacity: 0.7;
}

.socio-card-social a img {
    width: 22px;
    height: 22px;
}

/* ========================================
   CONTATO PAGE - HERO
   ======================================== */
.contato-hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    margin-top: var(--header-height);
    overflow: hidden;
}

.contato-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contato-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contato-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.contato-hero .container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    min-height: inherit;
}

.contato-hero-content {
    max-width: 500px;
}

.contato-hero-content h1 {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
}

.contato-hero-content p {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-white);
    opacity: 0.95;
    line-height: 1.6;
}

/* ========================================
   CONTATO PAGE - FORMULÁRIO
   ======================================== */
.contato-form-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.contato-header {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 30px;
}

.contato-header-icon {
    width: 35px;
    height: 35px;
    margin-bottom: 0;
}

.contato-header-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.contato-header h2 {
    font-family: var(--font-primary);
    font-size: 30px;
    font-weight: 700;
    color: var(--color-dark);
}

.contato-subtitle {
    font-size: 14px;
    color: var(--color-text-light);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contato-intro {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.contato-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.contato-info-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    margin-top: 2px;
}

.contato-info-item span {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.6;
}

.contato-form-wrapper {
    background-color: var(--color-primary);
    border-radius: 16px;
    padding: 35px 30px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    font-family: var(--font-secondary);
    font-size: 14px;
    outline: none;
    transition: background-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    background-color: rgba(255, 255, 255, 0.25);
}

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

.contato-submit {
    background-color: var(--color-accent);
    color: var(--color-white);
    text-transform: lowercase;
    margin-top: 5px;
    padding: 12px 30px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contato-submit:hover {
    background-color: var(--color-accent-dark);
}

.contato-form-status {
    margin-top: 15px;
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contato-form-status.success {
    color: #27AE60;
    background-color: rgba(39, 174, 96, 0.1);
    padding: 10px 15px;
}

.contato-form-status.error {
    color: #E74C3C;
    background-color: rgba(231, 76, 60, 0.1);
    padding: 10px 15px;
}

/* ========================================
   CONTATO PAGE - BASES / MAPAS
   ======================================== */
.contato-bases {
    padding: 60px 0;
    background-color: var(--color-light-gray);
}

.bases-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.base-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.base-card-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 25px 25px 15px;
}

.base-card-header .pin-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    margin-top: 2px;
}

.base-card-header h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-dark);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.base-card-header p {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.5;
}

.base-card-map {
    width: 100%;
    line-height: 0;
}

.base-card-map iframe {
    width: 100%;
    height: 280px;
    display: block;
    border: 0;
}

/* ========================================
   SOLUÇÕES PAGE
   ======================================== */
.solucoes-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    margin-top: var(--header-height);
    overflow: hidden;
}

.solucoes-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.solucoes-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solucoes-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.solucoes-hero .container {
    position: relative;
    z-index: 3;
}

.solucoes-hero-content {
    padding-bottom: 50px;
    max-width: 500px;
}

.solucoes-hero-content h1 {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
}

.solucoes-hero-content p {
    font-size: 16px;
    color: var(--color-white);
    opacity: 0.95;
    line-height: 1.6;
}

.solucoes-multiplas {
    padding: 80px 0;
    background-color: var(--color-white);
    text-align: center;
}

.multiplas-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.multiplas-icon {
    width: 35px;
    height: 35px;
    margin-bottom: 15px;
}

.multiplas-header h2 {
    font-size: 28px;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.multiplas-subtitle {
    font-size: 14px;
    color: var(--color-text-light);
}

.solucoes-timeline {
    padding: 0 0 60px;
    background-color: var(--color-white);
    text-align: center;
}

.timeline-img {
    max-width: 100%;
    margin: 0 auto;
}

.solucoes-servicos {
    padding: 60px 0 80px;
    background-color: var(--color-light-gray);
}

.servicos-banner {
    margin-bottom: 40px;
}

.servicos-banner img {
    width: 100%;
    border-radius: 12px;
}

.servicos-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 50px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

.checklist-item .check-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
}

.checklist-item span {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.5;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.animate-ready {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .valor-slider {
        height: clamp(250px, 35dvh, 380px);
    }

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

    .clientes-grid {
        grid-template-columns: repeat(5, 1fr);
    }

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

    .socios-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .metodologias-wrapper {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    :root {
        --header-height: 65px;
    }

    .main-navigation {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: var(--color-white);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }

    .main-navigation.active {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 15px;
    }

    .main-navigation a {
        color: var(--color-text);
    }

    .menu-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-section {
        min-height: 420px;
    }

    .valor-slider {
        height: clamp(220px, 30dvh, 320px);
        max-width: 100%;
    }

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

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

    .clientes-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .sobre-hero {
        min-height: 320px;
    }

    .sobre-hero-content h1 {
        font-size: 32px;
    }

    .socios-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

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

    .contato-hero {
        min-height: 280px;
    }

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

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

    .metodologias-wrapper {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .servicos-checklist {
        grid-template-columns: 1fr;
    }

    .solucoes-hero {
        min-height: 280px;
    }

    .solucoes-hero-content h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

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