/* =====================================================
   Irmãos Souza - Site Institucional
   Design System Inspirado Airbus
   ===================================================== */

/* ===== Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ===== Variáveis CSS ===== */
:root {
    /* Cores principais */
    --vermelho: #E63946;
    --vermelho-hover: #d62828;
    --azul-escuro: #1B3A6B;
    --azul-medio: #2A4F8A;
    --azul-claro: #3a6db5;
    --cinza-claro: #F5F5F5;
    --cinza-medio: #E8E8E8;
    --branco: #FFFFFF;
    --preto: #1a1a1a;
    --texto: #333333;
    --texto-light: #555555;

    /* Gradientes - Overlay mais suave para hero (recomendação UX) */
    --grad-hero: linear-gradient(135deg, rgba(27,58,107,0.15) 0%, rgba(27,58,107,0.05) 100%);
    --grad-azul: linear-gradient(135deg, #1B3A6B 0%, #2A4F8A 100%);
    --grad-stats: linear-gradient(135deg, rgba(27,58,107,0.95) 0%, rgba(42,79,138,0.95) 100%);

    /* Tipografia */
    --font-display: 'Poppins', sans-serif;
    --font-logo: 'Bebas Neue', 'Arial Black', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Tamanhos de fonte */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3.5rem;
    --text-6xl: 4.5rem;
    --text-hero: 6rem;

    /* Espaçamentos (inspirado Airbus) */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 60px;
    --space-2xl: 80px;
    --space-section: 60px;

    /* Transições */
    --transition-fast: 0.2s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.2);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.15);

    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Z-index */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 500;
    --z-fixed: 1000;
    --z-modal: 2000;
}

/* ===== Reset e Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--texto);
    line-height: 1.7;
    background-color: var(--branco);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== Tipografia ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--azul-escuro);
    margin-bottom: var(--space-md);
}

h1 {
    font-size: var(--text-5xl);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: var(--text-4xl);
    font-weight: 700;
    position: relative;
}

/* Títulos de seção usam Bebas Neue (identidade visual da logo) */
h2.section-title {
    font-family: var(--font-logo);
    font-size: var(--text-5xl);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Underline vermelho para títulos */
h2.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--vermelho);
    margin-top: var(--space-sm);
}

h2.section-title.text-center::after {
    margin-left: auto;
    margin-right: auto;
}

h3 {
    font-size: var(--text-2xl);
}

h4 {
    font-size: var(--text-xl);
}

h5 {
    font-size: var(--text-lg);
}

h6 {
    font-size: var(--text-base);
}

p {
    margin-bottom: var(--space-md);
    color: var(--texto-light);
    font-size: var(--text-lg);
    line-height: 1.8;
}

a {
    color: var(--vermelho);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--vermelho-hover);
}

/* ===== Container ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ===== Seções ===== */
section {
    padding: var(--space-section) 0;
    position: relative;
}

section.light {
    background-color: var(--cinza-claro);
}

section.dark {
    background: var(--grad-azul);
    color: var(--branco);
}

section.dark h2,
section.dark h3,
section.dark h4,
section.dark p {
    color: var(--branco);
}

section.dark p {
    color: rgba(255, 255, 255, 0.9);
}

/* ===== Header / Navbar ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    background: rgba(27, 58, 107, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
}

header.scrolled {
    background: rgba(27, 58, 107, 0.98);
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    min-height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
    transition: var(--transition);
}

/* Logo na navbar quando fundo escuro */
.navbar:not(.scrolled) .logo img {
    filter: brightness(0) invert(1);
}

/* Logo na navbar quando scrollado - INVERTIDA para branco */
.navbar.scrolled .logo img {
    filter: brightness(0) invert(1);
}

.logo-text {
    color: var(--branco);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--text-xl);
    margin-left: var(--space-sm);
}

nav ul {
    list-style: none;
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

nav a {
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--space-xs) 0;
    position: relative;
    transition: var(--transition);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--vermelho);
    transition: var(--transition);
}

nav a:hover,
nav a.active {
    color: var(--branco);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

/* Menu toggle mobile */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--branco);
    font-size: 1.75rem;
    cursor: pointer;
    padding: var(--space-xs);
    line-height: 1;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--branco);
    overflow: hidden;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.9); /* Mais claro - estilo Airbus */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--grad-hero);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 var(--space-lg);
}

.hero h1 {
    font-family: var(--font-logo);
    font-size: var(--text-hero);
    font-weight: 400; /* Bebas Neue só tem peso 400 */
    color: var(--branco);
    margin-bottom: var(--space-sm);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), 0 2px 10px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.05em; /* Espaçamento similar à logo */
    line-height: 1;
    text-transform: uppercase;
}

.hero .slogan {
    font-size: var(--text-3xl);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-md);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero p {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero .btn {
    font-size: var(--text-lg);
    padding: var(--space-sm) var(--space-xl);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    margin-top: var(--space-xs);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== Botões ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-lg);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-bounce);
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
}

/* INVERTIDO: btn-primary agora é VERMELHO (padrão do sistema) */
.btn-primary {
    background-color: var(--vermelho);
    color: var(--branco);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
    background-color: var(--vermelho-hover);
    color: var(--branco);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

/* btn-secondary agora é AZUL (secundário) */
.btn-secondary {
    background-color: var(--azul-escuro);
    color: var(--branco);
}

.btn-secondary:hover {
    background-color: var(--azul-medio);
    color: var(--branco);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--vermelho);
    color: var(--vermelho);
}

.btn-outline:hover {
    background-color: var(--vermelho);
    color: var(--branco);
}

.btn-outline-white {
    background-color: transparent;
    border: 2px solid var(--branco);
    color: var(--branco);
}

.btn-outline-white:hover {
    background-color: var(--branco);
    color: var(--azul-escuro);
}

.btn-lg {
    padding: var(--space-md) var(--space-xl);
    font-size: var(--text-lg);
}

.btn-sm {
    padding: var(--space-xs) var(--space-md);
    font-size: var(--text-sm);
}

.btn-icon {
    padding: var(--space-sm);
    border-radius: var(--radius-full);
}

/* ===== Cards ===== */
.card {
    background-color: var(--branco);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-bounce);
}

.card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-10px);
}

.card-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    background-color: var(--vermelho);
    color: var(--branco);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-body {
    padding: var(--space-lg);
}

.card-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
    color: var(--azul-escuro);
}

.card-text {
    color: var(--texto-light);
    margin-bottom: var(--space-md);
    font-size: var(--text-base);
    line-height: 1.6;
}

/* Card Glassmorphism - padding reduzido para evitar balões vazios */
.card-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    transition: var(--transition-bounce);
}

.card-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card-glass .stat-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    color: var(--branco);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.card-glass .stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

.card-glass .stat-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    opacity: 0.9;
}

/* ===== Grid System ===== */
.grid {
    display: grid;
    gap: var(--space-lg);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-auto {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* ===== Seção Apresentação ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-content h3 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-md);
}

.about-content p {
    font-size: var(--text-lg);
    line-height: 1.9;
}

/* ===== Seção Estatísticas ===== */
.stats-section {
    background: var(--grad-stats);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-bg.jpg') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.stats-section .container {
    position: relative;
    z-index: 1;
}

.stats-section h2 {
    color: var(--branco);
    text-align: center;
    margin-bottom: var(--space-xl);
}

.stats-section h2::after {
    background-color: var(--vermelho);
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

/* ===== Seção Produtos ===== */
.products-section {
    background-color: var(--cinza-claro);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

/* ===== Seção Estrutura ===== */
.bases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

/* Grid para 5 cards - layout responsivo */
.bases-grid-5 {
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-md);
}

.bases-grid-5 .card-base {
    min-width: 0;
}

.bases-grid-5 .card-base .card-body {
    padding: var(--space-sm);
}

.bases-grid-5 .card-base .card-body h4 {
    font-size: var(--text-base);
    margin-bottom: 4px;
}

.bases-grid-5 .card-base .card-body p {
    font-size: var(--text-xs);
    line-height: 1.4;
    margin-bottom: 8px;
}

.bases-grid-5 .card-base .base-tag {
    font-size: 0.65rem;
    padding: 2px 8px;
}

@media (max-width: 1200px) {
    .bases-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .bases-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .bases-grid-5 {
        grid-template-columns: 1fr;
    }
}

.base-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 350px;
}

.base-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.base-card:hover img {
    transform: scale(1.05);
}

.base-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    background: linear-gradient(to top, rgba(27, 58, 107, 0.95), transparent);
    color: var(--branco);
}

.base-card-overlay h4 {
    color: var(--branco);
    margin-bottom: var(--space-xs);
    font-size: var(--text-xl);
}

.base-card-overlay .base-tag {
    display: inline-block;
    background-color: var(--vermelho);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.base-card-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-sm);
    margin: 0;
}

/* ===== Seção CTA / Trabalhe Conosco ===== */
.cta-section {
    position: relative;
    padding: var(--space-section) 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(27, 58, 107, 0.9);
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: var(--branco);
    text-align: center;
}

.cta-section > .container > p {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-xl);
}

.cta-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
}

.cta-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    transition: var(--transition-bounce);
}

.cta-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.cta-card-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.cta-card h3 {
    color: var(--branco);
    margin-bottom: var(--space-sm);
}

.cta-card p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-md);
    font-size: var(--text-base);
}

/* ===== Banner Frete ===== */
.banner-frete {
    background: linear-gradient(135deg, var(--vermelho) 0%, #c41e2a 100%);
    padding: var(--space-lg) 0;
    color: var(--branco);
}

.banner-frete .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

.banner-frete h3 {
    color: var(--branco);
    margin: 0;
    font-size: var(--text-2xl);
}

.banner-frete p {
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-size: var(--text-base);
}

.banner-frete .btn {
    background-color: var(--branco);
    color: var(--vermelho);
    flex-shrink: 0;
}

.banner-frete .btn:hover {
    background-color: var(--azul-escuro);
    color: var(--branco);
}

/* ===== Footer ===== */
footer {
    background-color: var(--azul-escuro);
    color: var(--branco);
    border-top: 4px solid var(--vermelho);
    padding: var(--space-xl) 0 var(--space-md);
}

/* Texto do footer mais legível */
.footer-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-base);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.footer-main {
    padding: var(--space-lg) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: var(--space-xl);
}

.footer-brand .logo-text {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.footer-brand .slogan {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-sm);
    margin-bottom: var(--space-md);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    margin-bottom: var(--space-xs);
}

.footer-section h4 {
    color: var(--branco);
    font-size: var(--text-lg);
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--space-sm);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-sm);
    transition: var(--transition);
    display: inline-block;
}

.footer-section a:hover {
    color: var(--vermelho);
    padding-left: 5px;
}

.footer-addresses p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-md);
}

.footer-addresses strong {
    color: var(--branco);
    display: block;
    margin-bottom: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-md) 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
    margin: 0;
}

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--branco);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--vermelho);
    transform: scale(1.1);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

/* ===== Formulários ===== */
.form-group {
    margin-bottom: var(--space-md);
}

label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
    color: var(--texto);
    font-size: var(--text-sm);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea,
select {
    width: 100%;
    padding: var(--space-sm);
    border: 2px solid var(--cinza-medio);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: var(--text-base);
    transition: var(--transition);
    background-color: var(--branco);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--azul-escuro);
    box-shadow: 0 0 0 4px rgba(27, 58, 107, 0.1);
}

textarea {
    resize: vertical;
    min-height: 150px;
}

.form-error {
    color: #dc3545;
    font-size: var(--text-sm);
    margin-top: var(--space-xs);
}

.form-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

/* ===== Animações Scroll Reveal ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Delay classes */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* ===== Utilitários ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-white { color: var(--branco); }
.text-primary { color: var(--vermelho); }
.text-secondary { color: var(--azul-escuro); }

.bg-light { background-color: var(--cinza-claro); }
.bg-dark { background-color: var(--azul-escuro); }
.bg-white { background-color: var(--branco); }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.pt-lg { padding-top: var(--space-lg); }
.pb-lg { padding-bottom: var(--space-lg); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

.hidden { display: none; }

/* ===== Responsividade ===== */
@media (max-width: 1024px) {
    :root {
        --text-hero: 4rem;
        --text-5xl: 2.5rem;
        --text-4xl: 2rem;
        --space-section: 80px;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    :root {
        --text-hero: 3rem;
        --text-5xl: 2rem;
        --text-4xl: 1.75rem;
        --text-3xl: 1.5rem;
        --space-section: 60px;
        --space-xl: 40px;
    }

    /* Menu toggle visível em mobile */
    .navbar-toggle {
        display: block;
    }

    /* Menu escondido por padrão em mobile */
    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--azul-escuro);
        padding: var(--space-md);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        gap: 0;
        z-index: 9999; /* Acima de tudo - hero, overlay, etc */
    }

    /* Menu visível quando ativo */
    .navbar-menu.active {
        display: flex;
    }

    .navbar-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-menu a {
        display: block;
        padding: var(--space-sm) 0;
    }

    nav li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    nav a {
        display: block;
        padding: var(--space-sm) 0;
    }

    .hero {
        height: 100vh;
        min-height: 100vh;
    }

    .hero h1 {
        font-size: var(--text-hero);
    }

    .hero .slogan {
        font-size: var(--text-xl);
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .about-grid,
    .bases-grid,
    .cta-cards {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .banner-frete .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-md);
    }

    /* Centralizar logo no footer mobile */
    .footer-brand,
    .footer-section:first-child {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .footer-brand img,
    .footer-logo,
    .footer-section:first-child img {
        margin: 0 auto !important;
        display: block !important;
    }

    /* Esconder Links Rápidos no mobile - menu já está disponível */
    .footer-section:nth-child(2) {
        display: none;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: var(--space-md);
    }

    .social-links {
        justify-content: center;
    }

    /* Footer mais compacto no mobile */
    footer {
        padding: var(--space-md) 0 var(--space-sm);
    }

    .footer-main {
        padding: var(--space-md) 0;
    }

    .footer-section h4 {
        font-size: var(--text-base);
        margin-bottom: var(--space-sm);
    }

    .footer-section ul li {
        margin-bottom: 6px;
    }
}

@media (max-width: 480px) {
    :root {
        --text-hero: 2.5rem;
        --space-lg: 24px;
    }

    .container {
        padding: 0 var(--space-md);
    }

    .hero {
        height: 100vh;
        min-height: 100vh;
    }

    .hero .btn {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-sm);
    }

    .card-glass {
        padding: var(--space-lg);
    }

    .card-glass .stat-number {
        font-size: var(--text-4xl);
    }

    .btn-lg {
        padding: var(--space-sm) var(--space-lg);
        font-size: var(--text-base);
    }
}

/* ===== Navbar Component ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    background: transparent;
    transition: var(--transition);
    padding: var(--space-sm) 0;
}

.navbar.scrolled {
    background: rgba(27, 58, 107, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
    align-items: center;
    margin: 0;
    padding: 0;
}

.navbar-menu a {
    color: var(--azul-escuro);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--space-xs) 0;
    position: relative;
    transition: var(--transition);
}

/* Menu branco quando navbar sobre hero (transparente) */
.navbar:not(.scrolled) .navbar-menu a {
    color: var(--branco);
}

/* Menu branco quando navbar scrollada (fundo azul escuro) */
.navbar.scrolled .navbar-menu a {
    color: var(--branco);
}

.navbar.scrolled .navbar-menu a:hover,
.navbar.scrolled .navbar-menu a.active {
    color: var(--vermelho);
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--vermelho);
    transition: var(--transition);
}

.navbar-menu a:hover,
.navbar-menu a.active {
    color: var(--vermelho);
}

/* Hover branco quando sobre hero */
.navbar:not(.scrolled) .navbar-menu a:hover,
.navbar:not(.scrolled) .navbar-menu a.active {
    color: var(--branco);
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
    width: 100%;
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
    width: 40px;
    height: 40px;
    position: relative;
}

.navbar-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--branco);
    margin: 5px auto;
    transition: var(--transition);
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero Page (Internal Pages) ===== */
.hero-page {
    height: clamp(300px, 45vh, 500px);
    background-size: cover;
    background-position: center 25%;
}

/* Hero Quem Somos - mostra a equipe na parte inferior da foto */
.hero-quem-somos {
    background-position: center 85%;
    height: clamp(350px, 50vh, 550px);
}

.hero-page::before {
    background: linear-gradient(135deg, rgba(27,58,107,0.6) 0%, rgba(27,58,107,0.4) 100%); /* Mais claro - estilo Airbus */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27,58,107,0.5) 0%, rgba(27,58,107,0.3) 100%); /* Mais claro - estilo Airbus */
    z-index: 0;
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.9);
    margin-top: var(--space-sm);
}

.hero-slogan {
    font-size: var(--text-3xl);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-md);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ===== Novo Hero HOME - "FORÇA REGIONAL" ===== */
.hero-title-grande {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-subtitle-grande {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto var(--space-md);
    line-height: 1.6;
    font-weight: 400;
}

.hero-frase-impacto {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: var(--vermelho);
    font-weight: 600;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto var(--space-lg);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255,255,255,0.1);
    border-left: 3px solid var(--vermelho);
    backdrop-filter: blur(5px);
}

/* ===== Seção Identidade da Empresa ===== */
.section-identidade {
    background: linear-gradient(135deg, var(--branco) 0%, var(--cinza-claro) 100%);
}

.identidade-texto {
    padding-right: var(--space-lg);
}

.identidade-texto .texto-destaque {
    font-size: var(--text-lg);
    color: var(--azul-escuro);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.identidade-destaque {
    display: flex;
    gap: var(--space-lg);
    margin: var(--space-lg) 0;
    padding: var(--space-md);
    background: var(--branco);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.destaque-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    flex: 1;
}

.destaque-numero {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--vermelho);
    line-height: 1;
}

.destaque-texto {
    font-size: var(--text-sm);
    color: var(--texto-light);
    margin-top: var(--space-xs);
}

/* ===== Seção Logística ===== */
.section-logistica {
    background: var(--azul-escuro);
    color: var(--branco);
}

.section-logistica .section-title {
    color: var(--branco);
}

.section-logistica .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.logistica-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.logistica-card {
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.logistica-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-5px);
}

.logistica-icon {
    color: var(--vermelho);
    margin-bottom: var(--space-md);
}

.logistica-icon svg {
    width: 48px;
    height: 48px;
}

.logistica-card h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--branco);
}

.logistica-card p {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

/* ===== Seção Frete de Retorno ===== */
.section-frete-retorno {
    background: linear-gradient(135deg, var(--vermelho) 0%, #c62836 100%);
    padding: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
}

.section-frete-retorno::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.5;
}

.frete-retorno-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--branco);
}

.frete-retorno-icon {
    margin-bottom: var(--space-md);
}

.frete-retorno-icon svg {
    width: 64px;
    height: 64px;
    stroke: var(--branco);
    opacity: 0.9;
}

.frete-retorno-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 400;
    margin-bottom: var(--space-md);
    letter-spacing: 0.02em;
}

.frete-retorno-content > p {
    font-size: var(--text-lg);
    margin-bottom: var(--space-lg);
    opacity: 0.95;
}

.btn-frete-retorno {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: var(--branco);
    color: var(--vermelho);
    font-weight: 700;
    font-size: var(--text-lg);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.btn-frete-retorno:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(0,0,0,0.3);
}

.btn-frete-retorno svg {
    width: 24px;
    height: 24px;
}

.frete-retorno-telefone {
    margin-top: var(--space-md);
    font-size: var(--text-base);
    opacity: 0.9;
}

.frete-retorno-telefone strong {
    font-size: var(--text-lg);
}

/* ===== Grid 6 Produtos ===== */
.products-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.products-grid-6 .card-product {
    height: 100%;
}

.products-grid-6 .card-product .card-body {
    padding: var(--space-md);
}

.products-grid-6 .card-product .card-title {
    font-size: var(--text-base);
    margin-bottom: var(--space-xs);
}

.products-grid-6 .card-product .card-text {
    font-size: var(--text-sm);
    line-height: 1.5;
}

/* ===== Responsivo - Novos Elementos HOME ===== */
@media (max-width: 1024px) {
    .logistica-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }

    .identidade-destaque {
        flex-direction: column;
        gap: var(--space-md);
    }
}

@media (max-width: 768px) {
    .hero-title-grande {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .hero-frase-impacto {
        padding: var(--space-sm);
        font-size: var(--text-sm);
    }

    .identidade-texto {
        padding-right: 0;
        margin-bottom: var(--space-lg);
    }

    .logistica-grid {
        grid-template-columns: 1fr;
    }

    .products-grid-6 {
        grid-template-columns: 1fr;
    }

    .frete-retorno-content h3 {
        font-size: 1.4rem;
    }

    .btn-frete-retorno {
        padding: var(--space-sm) var(--space-lg);
        font-size: var(--text-base);
    }
}

/* ===== Grid 5 Colunas - Empresas do Grupo ===== */
.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-md);
}

.card-empresa {
    background: var(--branco);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    border: 1px solid var(--cinza-borda);
    transition: all 0.3s ease;
}

.card-empresa:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card-empresa h4 {
    font-size: var(--text-base);
    color: var(--azul-escuro);
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.card-empresa p {
    font-size: var(--text-sm);
    color: var(--texto-light);
    margin: 0;
}

.card-empresa-destaque {
    background: linear-gradient(135deg, var(--vermelho) 0%, #c62836 100%);
    border-color: var(--vermelho);
}

.card-empresa-destaque h4,
.card-empresa-destaque p {
    color: var(--branco);
}

@media (max-width: 1024px) {
    .grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .grid-5 {
        grid-template-columns: 1fr;
    }
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.95); /* Mais claro - estilo Airbus */
}

/* ===== Section Variations ===== */
.section {
    padding: var(--space-section) 0;
    position: relative;
}

.section-light {
    background-color: var(--cinza-claro);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--texto-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== Section Tags ===== */
.section-tag {
    display: inline-block;
    background-color: rgba(27, 58, 107, 0.1);
    color: var(--azul-escuro);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.tag-highlight {
    background-color: var(--vermelho);
    color: var(--branco);
}

.tag-exclusive {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--preto);
}

/* ===== Image Hover Effect ===== */
.image-hover {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-hover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.image-hover:hover img {
    transform: scale(1.05);
}

/* ===== Grid Alignment ===== */
.align-center {
    align-items: center;
}

.align-start {
    align-items: flex-start;
}

.order-1-mobile {
    order: 0;
}

.order-2-mobile {
    order: 0;
}

/* ===== Pillar Cards ===== */
.card-pillar {
    background-color: var(--branco);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition-bounce);
}

.card-pillar:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-azul);
    border-radius: var(--radius-full);
    margin: 0 auto var(--space-md);
    color: var(--branco);
}

.card-pillar h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
}

.card-pillar p {
    font-size: var(--text-base);
    margin: 0;
}

/* ===== Timeline ===== */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--vermelho), var(--azul-escuro));
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-md);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -33px;
    top: 5px;
    width: 12px;
    height: 12px;
    background-color: var(--vermelho);
    border-radius: var(--radius-full);
    border: 2px solid var(--branco);
    box-shadow: var(--shadow-sm);
}

.timeline-content {
    background-color: var(--branco);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.timeline-year {
    display: inline-block;
    background-color: var(--vermelho);
    color: var(--branco);
    padding: 2px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.timeline-content h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.timeline-content p {
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.4;
}

/* ===== Team Cards ===== */
.card-team {
    background-color: var(--branco);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-bounce);
}

.card-team:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
}

.team-info {
    padding: var(--space-lg);
    text-align: center;
}

.team-info h3 {
    margin-bottom: var(--space-xs);
}

.team-role {
    display: inline-block;
    background-color: var(--vermelho);
    color: var(--branco);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

/* ===== Section Banner ===== */
.section-banner {
    background: linear-gradient(135deg, var(--vermelho) 0%, #c41e2a 100%);
    padding: var(--space-xl) 0;
    color: var(--branco);
}

.banner-content {
    text-align: center;
}

.banner-content h3 {
    color: var(--branco);
    font-size: var(--text-3xl);
    margin-bottom: var(--space-sm);
}

.banner-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: var(--text-lg);
    margin-bottom: var(--space-md);
}

/* ===== Footer Extended ===== */
.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: var(--space-md);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-sm);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--vermelho);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-sm);
}

.footer-contact svg {
    flex-shrink: 0;
    color: var(--vermelho);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a:hover {
    color: var(--vermelho);
}

/* ===== Product Cards Extended ===== */
.product-image-large {
    height: 400px;
}

.product-features {
    margin: var(--space-md) 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: var(--texto);
}

.feature-item svg {
    color: var(--vermelho);
    flex-shrink: 0;
}

.products-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.card-product {
    background-color: var(--branco);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-bounce);
}

.card-product:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.card-product .card-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.card-product .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.card-product:hover .card-image img {
    transform: scale(1.05);
}

.product-list {
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0 0;
}

.product-list li {
    position: relative;
    padding-left: var(--space-md);
    margin-bottom: var(--space-xs);
    font-size: var(--text-sm);
    color: var(--texto-light);
}

.product-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: var(--vermelho);
    border-radius: var(--radius-full);
}

/* ===== CTA Section Extended ===== */
.section-cta {
    background: var(--grad-stats);
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-bg.jpg') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.section-cta .container {
    position: relative;
    z-index: 1;
}

.section-cta h2,
.section-cta h3 {
    color: var(--branco);
}

.section-cta p {
    color: rgba(255, 255, 255, 0.9);
}

.section-cta .section-title::after {
    background-color: var(--vermelho);
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
}

.card-cta {
    text-align: center;
}

.cta-icon {
    color: var(--branco);
    margin-bottom: var(--space-md);
}

.card-cta h3 {
    color: var(--branco);
    margin-bottom: var(--space-sm);
}

.card-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-md);
}

/* ===== Structure Page Extended ===== */
.base-info {
    margin: var(--space-md) 0;
}

.info-item {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.info-item svg {
    color: var(--vermelho);
    flex-shrink: 0;
    margin-top: 4px;
}

.info-item strong {
    display: block;
    color: var(--azul-escuro);
    margin-bottom: 4px;
}

.info-item p {
    margin: 0;
    font-size: var(--text-sm);
}

/* Botão para abrir no Google Maps */
.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 6px 12px;
    background-color: var(--vermelho);
    color: var(--branco);
    font-size: var(--text-xs);
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.btn-map:hover {
    background-color: var(--vermelho-hover);
    transform: translateY(-2px);
}

.btn-map svg {
    color: var(--branco);
    flex-shrink: 0;
}

/* Versão menor do botão Maps para cards */
.btn-map-sm {
    padding: 4px 10px;
    font-size: 0.7rem;
}

.highlight-box {
    background-color: rgba(27, 58, 107, 0.05);
    border-left: 4px solid var(--azul-escuro);
    padding: var(--space-md);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: var(--space-md) 0;
}

.highlight-box h4 {
    margin-bottom: var(--space-xs);
    font-size: var(--text-lg);
}

.highlight-box p {
    margin-bottom: var(--space-sm);
    font-size: var(--text-base);
}

.highlight-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight-box li {
    position: relative;
    padding-left: var(--space-md);
    margin-bottom: var(--space-xs);
    font-size: var(--text-sm);
}

.highlight-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--vermelho);
    font-weight: bold;
}

.base-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-top: var(--space-md);
}

.feature-tag {
    background-color: rgba(230, 57, 70, 0.1);
    color: var(--vermelho);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
}

/* ===== Fleet Cards ===== */
.card-fleet {
    background-color: var(--branco);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition-bounce);
}

.card-fleet:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.fleet-icon {
    color: var(--azul-escuro);
    margin-bottom: var(--space-md);
}

.card-fleet h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
}

.card-fleet p {
    font-size: var(--text-base);
    margin: 0;
}

/* ===== Base Cards (Home) ===== */
.card-base {
    background-color: var(--branco);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-bounce);
}

.card-base:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.card-base .card-image {
    height: 200px;
    overflow: hidden;
}

.card-base .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.card-base:hover .card-image img {
    transform: scale(1.05);
}

.card-base .card-body {
    padding: var(--space-lg);
    position: relative;
}

.base-icon {
    position: absolute;
    top: -24px;
    left: var(--space-lg);
    width: 48px;
    height: 48px;
    background: var(--grad-azul);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    box-shadow: var(--shadow-md);
}

.card-base h4 {
    margin-top: var(--space-sm);
    margin-bottom: var(--space-xs);
}

.base-tag {
    display: inline-block;
    background-color: var(--vermelho);
    color: var(--branco);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.card-base p {
    font-size: var(--text-sm);
    margin: 0;
}

/* ===== Section Stats ===== */
.section-stats {
    background: var(--grad-stats);
    padding: var(--space-section) 0;
    position: relative;
    overflow: hidden;
}

.section-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-bg.jpg') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.section-stats .container {
    position: relative;
    z-index: 1;
}

.section-stats h2 {
    color: var(--branco);
}

.section-stats .section-title::after {
    background-color: var(--vermelho);
    margin-left: auto;
    margin-right: auto;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--branco);
    line-height: 1;
}

.stat-icon {
    color: var(--branco);
    opacity: 0.9;
    margin-bottom: var(--space-md);
}

/* ===== Form Extended ===== */
.form-card {
    background-color: var(--branco);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-card h3 {
    margin-bottom: var(--space-md);
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.btn-block {
    width: 100%;
}

/* ===== Benefits List ===== */
.benefits-list {
    margin: var(--space-md) 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: var(--texto);
}

.benefit-item svg {
    color: var(--vermelho);
    flex-shrink: 0;
}

/* ===== Job Areas ===== */
.job-areas {
    margin-top: var(--space-md);
}

.job-area {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background-color: var(--cinza-claro);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    transition: var(--transition);
}

.job-area:hover {
    background-color: var(--cinza-medio);
}

.job-area svg {
    color: var(--azul-escuro);
    flex-shrink: 0;
}

.job-area h4 {
    margin-bottom: 4px;
    font-size: var(--text-lg);
}

.job-area p {
    margin: 0;
    font-size: var(--text-sm);
}

/* ===== Card Apply ===== */
.card-apply {
    background-color: var(--branco);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.card-apply h3 {
    margin-bottom: var(--space-sm);
}

.contact-info {
    margin: var(--space-md) 0;
}

.contact-item {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.contact-item svg {
    color: var(--vermelho);
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-item strong {
    display: block;
    margin-bottom: 4px;
}

.contact-item a {
    color: var(--azul-escuro);
    font-weight: 500;
}

/* ===== Alerts ===== */
.alert {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    font-size: var(--text-base);
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* ===== Badge Exclusive ===== */
.badge-exclusive {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--preto);
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 1024px) {
    .cta-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar-toggle {
        display: block;
    }

    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--azul-escuro);
        flex-direction: column;
        padding: var(--space-md);
        gap: 0;
        box-shadow: var(--shadow-lg);
        z-index: 9999; /* Acima de tudo - hero, overlay, etc */
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-menu a {
        display: block;
        padding: var(--space-sm) 0;
    }

    .hero-page {
        height: 45vh;
        min-height: 400px;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline::before {
        left: 10px;
    }

    .timeline-marker {
        left: -25px;
        width: 12px;
        height: 12px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .order-1-mobile {
        order: 1;
    }

    .order-2-mobile {
        order: 2;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .bases-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-page {
        height: 40vh;
        min-height: 350px;
    }

    /* Hero Quem Somos - mobile */
    .hero-quem-somos {
        background-position: center 80%;
        height: 45vh;
        min-height: 380px;
    }

    .hero-page h1 {
        font-size: var(--text-3xl);
    }

    .hero-subtitle {
        font-size: var(--text-base);
    }

    .banner-content h3 {
        font-size: var(--text-2xl);
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== Print Styles ===== */
@media print {
    header, footer, .btn, .scroll-indicator {
        display: none;
    }

    .hero {
        height: auto;
        min-height: 0;
        padding: var(--space-lg) 0;
    }

    section {
        page-break-inside: avoid;
    }
}

/* ========================================
   FLOATING CTA - Caminhoneiro
======================================== */
.floating-trucker-cta {
    position: fixed;
    bottom: 100px;
    left: 20px;
    z-index: 998;

    /* Visual */
    background: linear-gradient(135deg, var(--vermelho) 0%, #d32f3d 100%);
    color: var(--branco);
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;

    /* Sombra */
    box-shadow:
        0 4px 15px rgba(230, 57, 70, 0.4),
        0 2px 6px rgba(0, 0, 0, 0.15);

    /* Tipografia */
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 600;
    white-space: nowrap;

    /* Display */
    display: flex;
    align-items: center;
    gap: 10px;

    /* Interação */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Animação de entrada + pulse contínuo */
    opacity: 0;
    transform: translateX(-100px);
    animation:
        floatingSlideIn 0.5s ease-out 2s forwards,
        floatingPulse 3s ease-in-out 2.5s infinite;
}

.floating-trucker-cta:hover {
    animation-play-state: paused;
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 8px 25px rgba(230, 57, 70, 0.5),
        0 4px 10px rgba(0, 0, 0, 0.2);
    color: var(--branco);
}

.floating-trucker-cta:active {
    transform: translateY(-2px) scale(1.02);
}

.floating-trucker-cta svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    flex-shrink: 0;
}

.floating-trucker-cta .cta-text {
    line-height: 1.2;
}

/* Pulse sutil - ativa após animação de entrada */
/* NOTA: Não redeclarar animation aqui - já definida acima com floatingSlideIn */

@keyframes floatingSlideIn {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatingPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Estado oculto (quando seção visível) */
.floating-trucker-cta.hidden {
    opacity: 0 !important;
    pointer-events: none;
    transform: translateX(-50px);
}

/* Responsivo Tablet */
@media (max-width: 768px) {
    .floating-trucker-cta {
        bottom: 80px;
        left: 15px;
        font-size: 14px;
        padding: 12px 20px;
        min-height: 44px; /* WCAG touch target */
    }

    .floating-trucker-cta svg {
        width: 22px;
        height: 22px;
    }
}

/* Responsivo Mobile */
@media (max-width: 480px) {
    .floating-trucker-cta {
        bottom: 70px;
        left: 10px;
        padding: 12px 18px;
        font-size: 14px; /* Legível - era 12px */
        min-height: 44px; /* WCAG touch target */
    }

    .floating-trucker-cta .full-text {
        display: none;
    }

    .floating-trucker-cta .short-text {
        display: inline;
        font-weight: 700;
        letter-spacing: 0.5px;
    }
}

@media (min-width: 481px) {
    .floating-trucker-cta .short-text {
        display: none;
    }
}

/* =====================================================
   Seção: Veja Nossa Força (Grid de Estrutura Visual)
   ===================================================== */

.section-forca {
    padding: var(--space-section) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.grid-forca {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: var(--space-lg);
}

.forca-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.forca-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.forca-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.forca-card:hover img {
    transform: scale(1.08);
}

.forca-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(27, 58, 107, 0.95) 0%, rgba(27, 58, 107, 0.7) 60%, transparent 100%);
    color: var(--branco);
    padding: 40px 20px 20px;
    transition: padding 0.3s ease;
}

.forca-card:hover .forca-label {
    padding-bottom: 24px;
}

.forca-label strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.forca-label span {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Responsivo: Tablet */
@media (max-width: 992px) {
    .grid-forca {
        gap: 20px;
    }

    .forca-label strong {
        font-size: 1.1rem;
    }
}

/* Responsivo: Mobile */
@media (max-width: 768px) {
    .section-forca {
        padding: var(--space-lg) 0;
    }

    .grid-forca {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .forca-card {
        aspect-ratio: 16/10;
    }

    .forca-label {
        padding: 30px 16px 16px;
    }

    .forca-label strong {
        font-size: 1.1rem;
    }

    .forca-label span {
        font-size: 0.85rem;
    }
}

/* =====================================================
   Seção: Equipe + Frota (Banner Épico - estrutura.php)
   ===================================================== */

.section-team-fleet {
    position: relative;
    padding: 100px 0;
    min-height: 450px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;
}

.section-team-fleet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(27, 58, 107, 0.85) 0%,
        rgba(230, 57, 70, 0.7) 100%
    );
    z-index: 1;
}

.section-team-fleet .container {
    position: relative;
    z-index: 2;
}

.team-fleet-content {
    text-align: center;
    color: var(--branco);
}

.team-fleet-content h2 {
    font-family: var(--font-logo);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    color: var(--branco);
    margin-bottom: var(--space-md);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.stats-inline {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: var(--space-lg) 0;
    flex-wrap: wrap;
}

.stat-inline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-inline-big {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--branco);
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.stat-inline-small {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    margin-top: 8px;
    font-weight: 500;
}

.team-fleet-content p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Responsivo: Tablet */
@media (max-width: 992px) {
    .section-team-fleet {
        background-attachment: scroll;
        padding: 80px 0;
    }

    .stats-inline {
        gap: 40px;
    }
}

/* Responsivo: Mobile */
@media (max-width: 768px) {
    .section-team-fleet {
        padding: 60px 0;
        min-height: 350px;
    }

    .stats-inline {
        gap: 30px;
    }

    .stat-inline-small {
        font-size: 0.9rem;
    }
}

/* =====================================================
   Seção: Cards de Frota com Fotos (estrutura.php)
   ===================================================== */

.card-fleet-photo {
    position: relative;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.card-fleet-photo:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.card-fleet-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(27, 58, 107, 0.5) 0%,
        rgba(27, 58, 107, 0.85) 100%
    );
    transition: background 0.3s ease;
}

.card-fleet-photo:hover::before {
    background: linear-gradient(
        to bottom,
        rgba(230, 57, 70, 0.5) 0%,
        rgba(27, 58, 107, 0.9) 100%
    );
}

.card-fleet-content {
    position: relative;
    z-index: 2;
    color: var(--branco);
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.fleet-icon-small {
    margin-bottom: 16px;
}

.fleet-icon-small svg {
    stroke: var(--branco);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.card-fleet-content h3 {
    color: var(--branco);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.card-fleet-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsivo: Mobile */
@media (max-width: 768px) {
    .card-fleet-photo {
        height: 280px;
    }

    .card-fleet-content {
        padding: 20px;
    }

    .card-fleet-content h3 {
        font-size: 1.4rem;
    }
}

/* =====================================================
   ACESSIBILIDADE - Focus States e Skip Links
   ===================================================== */

/* Focus visible para navegação por teclado */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--vermelho);
    outline-offset: 2px;
}

/* Remove outline padrão quando não é navegação por teclado */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
.btn:focus:not(:focus-visible) {
    outline: none;
}

/* Skip to content link - Acessibilidade */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--vermelho);
    color: var(--branco);
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--radius-md);
    z-index: var(--z-modal);
    transition: top var(--transition);
}

.skip-to-content:focus {
    top: 10px;
}

/* =====================================================
   CONTATO - Cards de Informação (UX Improvement)
   ===================================================== */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-card {
    background-color: var(--cinza-claro);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    transition: var(--transition);
}

.contact-card:hover {
    background-color: var(--cinza-medio);
    transform: translateY(-2px);
}

.contact-icon {
    color: var(--vermelho);
    flex-shrink: 0;
}

.contact-icon.whatsapp {
    color: #25D366;
}

.contact-info h4 {
    font-size: var(--text-lg);
    margin-bottom: 4px;
    color: var(--azul-escuro);
}

.contact-info a {
    color: var(--azul-escuro);
    font-weight: 600;
    font-size: var(--text-base);
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--vermelho);
}

.contact-info p {
    margin: 0;
    color: var(--texto-light);
    font-size: var(--text-sm);
}

/* =====================================================
   Mapa de Rede de Distribuição
   ===================================================== */
.mapa-container {
    text-align: center;
    margin-top: var(--space-element, 24px);
}

.mapa-card-hover {
    display: inline-block;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.mapa-card-hover:hover {
    transform: translateY(-8px) scale(1.02);
}

.mapa-rede {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 0;
    border: none;
    box-shadow: none;
    margin: 0 auto;
    display: block;
}

.mapa-home-container {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.mapa-home-card {
    display: inline-block;
    background: transparent;
    border: none;
    padding: 0;
    transition: var(--transition-bounce);
    cursor: pointer;
}

.mapa-home-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.mapa-home {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 0;
    display: block;
    border: none;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.mapa-home-card:hover .mapa-home {
    box-shadow: none;
}

/* Section Badge */
.section-badge {
    display: inline-block;
    background-color: var(--vermelho);
    color: var(--branco);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

/* Responsivo Mapa */
@media (max-width: 768px) {
    .mapa-rede,
    .mapa-home {
        max-width: 100%;
        border-radius: 8px;
    }

    .mapa-home-container {
        margin-bottom: var(--space-md);
    }
}

/* Social Section */
.social-section {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 2px solid var(--cinza-medio);
}

.social-section h4 {
    margin-bottom: var(--space-md);
    color: var(--azul-escuro);
}

.social-links-large {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.social-link-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    background-color: var(--azul-escuro);
    color: var(--branco);
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-decoration: none;
}

.social-link-item:hover {
    background-color: var(--vermelho);
    transform: translateY(-2px);
}

/* Base Cards (Contato - Nossas Bases) */
.base-card {
    background-color: var(--branco);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-card);
    transition: var(--transition-bounce);
    height: auto;
    overflow: visible;
}

.base-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.base-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
    border-bottom: 2px solid var(--cinza-medio);
    padding-bottom: var(--space-sm);
}

.base-header h3 {
    margin: 0;
    color: var(--azul-escuro);
}

.base-badge {
    background-color: var(--azul-escuro);
    color: var(--branco);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
}

.base-badge.highlight {
    background-color: var(--vermelho);
}

.base-body {
    color: var(--texto-light);
}

.base-body p {
    font-size: var(--text-base);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.base-body strong {
    color: var(--azul-escuro);
    display: block;
    margin-top: var(--space-md);
}

/* Form Hint */
.form-hint {
    font-size: var(--text-sm);
    color: var(--texto-light);
    margin-top: 4px;
    display: block;
}

/* Responsivo Contact Cards */
@media (max-width: 768px) {
    .contact-card {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        margin: 0 auto;
    }

    .social-links-large {
        justify-content: center;
    }
}

/* ============================================
   WHATSAPP FLUTUANTE GLOBAL
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:active {
    transform: scale(1.05);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.whatsapp-float .tooltip {
    position: absolute;
    right: 70px;
    background: white;
    color: var(--texto);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: var(--text-sm);
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.whatsapp-float .tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: white;
}

.whatsapp-float:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Ajuste quando há o CTA flutuante do caminhoneiro */
.floating-trucker-cta ~ .whatsapp-float,
.whatsapp-float.with-trucker-cta {
    bottom: 100px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 54px;
        height: 54px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-float .tooltip {
        display: none;
    }

    .floating-trucker-cta ~ .whatsapp-float,
    .whatsapp-float.with-trucker-cta {
        bottom: 85px;
    }
}

/* ============================================
   INSTAGRAM NO HEADER
   ============================================ */
.navbar-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 20px;
}

.navbar-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar-social a:hover {
    background: var(--vermelho);
    transform: scale(1.1);
}

.navbar-social a svg {
    width: 18px;
    height: 18px;
    fill: white;
}

@media (max-width: 1024px) {
    .navbar-social {
        display: none;
    }
}

/* =====================================================
   SEÇÃO WHATSAPP POR SETOR - Design Limpo
   Baseado no padrão de contact-cards do site
   ===================================================== */

/* Seção Background */
.section-whatsapps {
    background: var(--cinza-claro);
    padding: var(--space-section) 0;
}

.section-whatsapps .section-title {
    color: var(--azul-escuro);
}

.section-whatsapps .section-subtitle {
    color: var(--texto-light);
}

/* Garantir que elementos apareçam imediatamente */
.section-whatsapps .reveal,
.section-whatsapps .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Grid dos cards - 2 colunas */
.whatsapp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

/* Card WhatsApp - Layout horizontal (igual contact-card) */
.whatsapp-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background-color: var(--branco);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    text-decoration: none;
    transition: var(--transition-bounce);
}

.whatsapp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

/* Ícone do setor - Círculo pequeno */
.whatsapp-card-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--azul-escuro);
    border-radius: 50%;
    transition: var(--transition);
}

.whatsapp-card:hover .whatsapp-card-icon {
    background-color: var(--vermelho);
}

.whatsapp-card-icon svg {
    stroke: var(--branco);
    width: 24px;
    height: 24px;
}

/* Conteúdo central - Nome e descrição */
.whatsapp-card-content {
    flex: 1;
    min-width: 0;
}

.whatsapp-card-content h3 {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--azul-escuro);
    margin: 0 0 4px 0;
    transition: color var(--transition);
}

.whatsapp-card:hover .whatsapp-card-content h3 {
    color: var(--vermelho);
}

.whatsapp-card-content p {
    font-size: var(--text-sm);
    color: var(--texto-light);
    margin: 0;
    line-height: 1.4;
}

/* Área de ação - Número + ícone WhatsApp */
.whatsapp-card-action {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.whatsapp-numero {
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--azul-escuro);
    white-space: nowrap;
}

.whatsapp-icon-small {
    fill: #25D366;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform var(--transition);
}

.whatsapp-card:hover .whatsapp-icon-small {
    transform: scale(1.15);
}

/* Responsivo */
@media (max-width: 900px) {
    .whatsapp-grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
}

@media (max-width: 640px) {
    .whatsapp-card {
        flex-wrap: wrap;
        padding: var(--space-md);
    }

    .whatsapp-card-icon {
        width: 48px;
        height: 48px;
    }

    .whatsapp-card-icon svg {
        width: 20px;
        height: 20px;
    }

    .whatsapp-card-content {
        flex: 1 1 calc(100% - 64px);
    }

    .whatsapp-card-content h3 {
        font-size: var(--text-base);
    }

    .whatsapp-card-action {
        width: 100%;
        justify-content: space-between;
        margin-top: var(--space-xs);
        padding-top: var(--space-xs);
        border-top: 1px solid var(--cinza-medio);
    }
}

/* =====================================================
   SEÇÃO FUNDADOR - Homenagem a Ademir Gil de Souza
   Usa padrão do site (grid grid-2)
   ===================================================== */

/* Foto do fundador com proporção adequada */
.section:has(.fundador-anos) .image-hover img {
    max-height: 380px;
    width: 100%;
    object-fit: cover;
    object-position: center 20%;
    border-radius: var(--radius-md);
}

/* Anos de nascimento/falecimento */
.fundador-anos {
    display: block;
    font-size: var(--text-lg);
    color: var(--texto-light);
    font-style: italic;
    margin-bottom: var(--space-lg);
}

/* Parágrafo de fechamento com destaque */
.fundador-fecho {
    font-style: italic;
    color: var(--texto-light) !important;
    border-left: 3px solid var(--vermelho);
    padding-left: var(--space-md);
    margin-top: var(--space-lg) !important;
}
