/* Google Fonts - Carregado via link no HTML para evitar bloqueio */
/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap'); */

/* ============================================
   VARIÁVEIS E RESET
   ============================================ */
:root {
    --cor-primaria: #f5821f;
    --cor-secundaria: #00224f;
    --cor-texto: #333333;
    --cor-texto-claro: #666666;
    --cor-branco: #ffffff;
    --cor-cinza-claro: #f5f5f5;
    --cor-cinza-medio: #e0e0e0;
    --cor-sombra: rgba(0, 0, 0, 0.1);
    --cor-sombra-escura: rgba(0, 0, 0, 0.2);
    --transicao: all 0.3s ease;
}

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

html {
    scroll-behavior: auto !important; /* Sem scroll suave - rolagem instantânea */
    font-size: 16px; /* Base mobile-first */
}

/* FORÇAR remoção de scroll suave em TODOS os elementos */
*,
*::before,
*::after {
    scroll-behavior: auto !important;
    -webkit-overflow-scrolling: auto !important;
}

/* Ajustar scroll padding em mobile */
@media (max-width: 768px) {
    /* Sem padding adicional - elementos não são fixos */
}

body {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    color: var(--cor-texto);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1rem; /* Mobile-first base */
    padding-top: 0; /* Sem padding - elementos não são fixos */
}

/* Garantir que todos os elementos usem Montserrat, exceto ícones Font Awesome */
*:not(i):not(.fa):not([class*="fa-"]):not([class*="fab"]):not([class*="fas"]):not([class*="far"]):not([class*="fal"]):not([class*="fad"]),
*:not(i):not(.fa):not([class*="fa-"]):not([class*="fab"]):not([class*="fas"]):not([class*="far"]):not([class*="fal"]):not([class*="fad"])::before,
*:not(i):not(.fa):not([class*="fa-"]):not([class*="fab"]):not([class*="fas"]):not([class*="far"]):not([class*="fal"]):not([class*="fad"])::after {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

/* Ícones Font Awesome devem usar a fonte do Font Awesome */
i[class*="fa"],
[class*="fa-"],
[class*="fab"],
[class*="fas"],
[class*="far"],
[class*="fal"],
[class*="fad"] {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands" !important;
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}

/* Elementos de formulário também devem usar Montserrat */
input,
textarea,
select,
button {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Mobile-first: padding menor */
    box-sizing: border-box;
}

/* Mobile-first: aumentar padding em telas maiores */
@media (min-width: 481px) {
    .container {
        padding: 0 20px;
    }
}

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

/* ============================================
   TOP BAR - INFORMAÇÕES DE CONTATO
   ============================================ */
.top-bar,
div.top-bar,
body .top-bar,
html body .top-bar,
html body div.top-bar {
    background: #00224f !important;
    background: var(--cor-secundaria) !important;
    color: #ffffff !important;
    color: var(--cor-branco) !important;
    padding: 0.6rem 0 !important;
    font-size: 0.9rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    width: 100% !important;
    display: block !important;
    position: relative !important; /* POSIÇÃO ESTÁTICA - acompanha scroll normalmente */
    top: auto !important;
    left: auto !important;
    right: auto !important;
    z-index: 1001 !important;
    box-sizing: border-box !important;
    height: auto;
    min-height: 40px;
    margin: 0 !important;
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
}

.top-bar-item a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    color: var(--cor-branco);
    text-decoration: none;
    transition: all 0.3s ease;
    transition: var(--transicao);
    padding: 0.3rem 0;
}

.top-bar-item a:hover {
    color: #f5821f;
    color: var(--cor-primaria);
    transform: translateY(-1px);
}

.top-bar-item i {
    font-size: 1rem !important;
    color: #ffffff !important;
    color: var(--cor-branco) !important;
    transition: all 0.3s ease;
    transition: var(--transicao);
    display: inline-block !important;
    width: auto !important;
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands" !important;
    font-weight: 900 !important;
    font-style: normal !important;
    line-height: 1 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

.top-bar-item a:hover i {
    color: #ffffff;
    color: var(--cor-branco);
    transform: scale(1.1);
}

.top-bar-item span {
    font-weight: 500;
}

/* ============================================
   HEADER
   ============================================ */
.header,
header.header,
body .header,
html body .header,
html body header.header {
    background: #ffffff !important;
    background: var(--cor-branco) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    position: relative !important; /* POSIÇÃO ESTÁTICA - acompanha scroll normalmente */
    top: auto !important;
    left: auto !important;
    right: auto !important;
    z-index: 1002 !important;
    width: 100% !important;
    display: block !important;
    transition: box-shadow 0.3s ease;
    margin: 0 !important;
}

.header .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

@media (min-width: 481px) {
    .header .container {
        padding: 0 20px;
    }
}

body .header {
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

.header-content {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 1rem 0 !important;
    width: 100% !important;
    position: relative;
    flex-wrap: nowrap; /* Não quebrar linha */
    min-height: 60px; /* Garantir altura mínima para alinhamento */
    max-width: 1200px;
    margin: 0 auto;
}

/* Mobile: garantir que logo e menu toggle fiquem na mesma linha */
@media (max-width: 968px) {
    .header-content {
        flex-wrap: nowrap;
        padding: 0.8rem 0 !important;
    }
    
    .logo {
        flex: 0 0 auto;
        max-width: 200px;
    }
    
    .logo-img {
        max-height: 60px !important;
        width: auto !important;
    }
    
    .nav {
        order: 3;
        width: 100%;
    }
    
    .menu-toggle {
        order: 2;
        flex: 0 0 auto;
        margin-left: auto;
    }
    
    .top-bar,
    div.top-bar,
    body .top-bar,
    html body .top-bar {
        position: relative !important; /* POSIÇÃO ESTÁTICA - acompanha scroll */
        top: auto !important;
        left: auto !important;
        right: auto !important;
    }
    
    .header,
    header.header,
    body .header,
    html body .header {
        position: relative !important; /* POSIÇÃO ESTÁTICA - acompanha scroll */
        top: auto !important;
        left: auto !important;
        right: auto !important;
        z-index: 1002 !important; /* Maior que top-bar (1001) para aparecer acima no mobile */
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Garantir que header-content e menu apareçam corretamente */
    .header-content {
        position: relative !important;
        z-index: 1 !important;
    }
    
    .nav {
        z-index: 1003 !important; /* Menu acima de tudo */
    }
    
    .menu-toggle {
        z-index: 1004 !important; /* Botão menu acima de tudo */
    }
}

.logo a {
    text-decoration: none;
    color: var(--cor-secundaria);
    display: flex;
    align-items: center;
}

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

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--cor-secundaria);
}

.logo span {
    font-size: 0.9rem;
    color: var(--cor-primaria);
    display: block;
    margin-top: -5px;
}

/* Mobile First - Menu oculto por padrão */
.nav {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 1rem; /* Mobile first: gap menor */
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

/* Desktop: menu horizontal */
@media (min-width: 969px) {
    .nav {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        flex-wrap: nowrap;
    }
    
    .nav ul {
        display: flex;
        gap: 2rem;
        flex-wrap: nowrap;
        align-items: center;
        margin: 0;
        padding: 0;
    }
    
    .nav .btn-whatsapp-menu {
        margin-left: 0;
        flex-shrink: 0;
        align-self: center;
        display: inline-flex;
    }
}

/* Mobile: menu vertical */
@media (max-width: 968px) {
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        background: var(--cor-branco);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, opacity 0.3s ease;
        opacity: 0;
        z-index: 1003 !important; /* Maior que header (1002) e top-bar (1001) para aparecer acima */
    }

    .nav.active {
        max-height: 800px;
        opacity: 1;
    }

    .nav ul {
        flex-direction: column;
        padding: 1.5rem;
        gap: 0;
        align-items: stretch;
        width: 100%;
        margin-bottom: 0;
    }

    .nav ul li {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .nav ul li a {
        width: 100%;
        padding: 1rem 1.5rem;
        display: block;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        font-size: 1rem;
        text-align: left;
    }

    .nav ul li:last-child a {
        border-bottom: none;
    }

    .nav ul li a:hover {
        background: rgba(0, 34, 79, 0.05);
        color: var(--cor-secundaria);
    }

    .nav .btn-whatsapp-menu {
        width: calc(100% - 3rem) !important;
        justify-content: center !important;
        margin: 1rem 1.5rem !important;
        padding: 1rem 1.5rem !important;
        border-radius: 8px;
        order: 999;
        display: flex !important;
        box-shadow: 0 4px 12px rgba(245, 130, 31, 0.3);
    }
}

.nav a {
    text-decoration: none;
    color: #333333;
    color: var(--cor-texto);
    font-weight: 500;
    transition: all 0.3s ease;
    transition: var(--transicao);
    position: relative;
    display: block;
}

.nav a:hover,
.nav a.active {
    color: #f5821f;
    color: var(--cor-primaria);
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--cor-primaria);
}

.btn-orcamento {
    background: #f5821f;
    background: var(--cor-primaria);
    color: #ffffff !important;
    color: var(--cor-branco) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    transition: var(--transicao);
    display: inline-block;
}

.btn-orcamento:hover {
    background: #e0700d;
    transform: translateY(-2px);
}

.btn-orcamento.active {
    background: #e0700d;
}

.btn-whatsapp-menu {
    background: #f5821f;
    background: var(--cor-primaria);
    color: var(--cor-branco) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    transition: var(--transicao);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(245, 130, 31, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp-menu::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-whatsapp-menu:hover::before {
    width: 300px;
    height: 300px;
}

.btn-whatsapp-menu:hover {
    background: #e0700d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 130, 31, 0.4);
}

.btn-whatsapp-menu i {
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-whatsapp-menu:hover i {
    transform: scale(1.1);
}

.btn-whatsapp-menu span {
    position: relative;
    z-index: 1;
}

/* Mobile First - Menu Toggle sempre visível em mobile */
.menu-toggle {
    display: flex; /* Mobile first: visível por padrão */
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1003 !important; /* Maior que header (1002) para aparecer acima */
    position: relative;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #00224f;
    background: var(--cor-secundaria);
    margin: 3px 0;
    transition: all 0.3s ease;
    display: block;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Desktop: esconder menu toggle */
@media (min-width: 969px) {
    .menu-toggle {
        display: none;
    }
}

/* ============================================
   HERO SECTION - MODERNO
   ============================================ */
.hero {
    background: linear-gradient(135deg, #00224f 0%, #001a3d 50%, #003366 100%);
    background: linear-gradient(135deg, var(--cor-secundaria) 0%, #001a3d 50%, #003366 100%);
    color: var(--cor-branco);
    padding: 180px 0 100px; /* Mobile-first: padding maior para compensar header fixo */
    position: relative;
    overflow: hidden;
    min-height: auto; /* Mobile-first: sem min-height fixo */
    display: flex;
    align-items: center;
    margin-top: 0;
}

.hero .container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

@media (min-width: 481px) {
    .hero .container {
        padding: 0 20px;
    }
}

/* Desktop: aumentar padding e min-height */
@media (min-width: 769px) {
    .hero {
        padding: 200px 0 100px; /* Ajustado para header fixo */
        min-height: 100vh;
    }
}

/* REMOVIDO: .hero::before - quadrado transparente removido */
.hero::before {
    display: none !important;
    content: none !important;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(245, 130, 31, 0.08) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    /* Background image com transparência */
    background-image: url('../images/probbor_background.png') !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
    background-color: rgba(0, 34, 79, 0.85) !important; /* Transparência sobre cor secundária */
    background-blend-mode: overlay !important;
    z-index: 0; /* Atrás do conteúdo */
}

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(245, 130, 31, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(245, 130, 31, 0.1);
    filter: blur(40px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation: float 15s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: 15%;
    animation: float 18s ease-in-out infinite reverse;
}

.shape-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    right: 10%;
    animation: float 12s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 700px;
    margin: 0;
    animation: fadeInUp 1s ease-out;
}

/* REMOVIDO: .hero::before duplicado - quadrado transparente removido */
.hero::before {
    display: none !important;
    content: none !important;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(245, 130, 31, 0.1) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 1.8rem; /* Mobile-first: tamanho menor */
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: #ffffff;
}

/* Desktop: aumentar tamanho */
@media (min-width: 769px) {
    .hero-title {
        font-size: 3.2rem;
    }
}

.hero-title-line {
    display: block;
    font-size: 0.85em;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.hero-title-highlight {
    display: block;
    background: linear-gradient(135deg, var(--cor-primaria) 0%, #ff9d4d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.15em;
}

.hero-subtitle {
    font-size: 1rem; /* Mobile-first: tamanho menor */
    margin-bottom: 2rem; /* Mobile-first: margem menor */
    opacity: 0.95;
    line-height: 1.8;
    max-width: 650px;
    margin-left: 0;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    text-transform: none;
}

/* Desktop: aumentar tamanho */
@media (min-width: 769px) {
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 3rem;
    }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-cta-destaque {
    background: #f5821f !important;
    background: var(--cor-primaria) !important;
    color: #ffffff !important;
    color: var(--cor-branco) !important;
    padding: 1.2rem 2.5rem !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    box-shadow: 0 8px 25px rgba(245, 130, 31, 0.4) !important;
    min-height: 60px;
    display: inline-flex !important;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.btn-cta-destaque:hover {
    background: #e0700d !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 35px rgba(245, 130, 31, 0.5) !important;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-hero:hover::before {
    width: 300px;
    height: 300px;
}

.btn-hero span,
.btn-hero i {
    position: relative;
    z-index: 1;
}

.btn-hero i {
    transition: transform 0.3s ease;
}

.btn-hero:hover i {
    transform: translateX(5px);
}

/* ============================================
   NÚMEROS / ESTATÍSTICAS SECTION
   ============================================ */
.numeros-section {
    background: linear-gradient(135deg, var(--cor-secundaria) 0%, #003366 100%);
    color: var(--cor-branco);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.numeros-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 130, 31, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.numeros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.numero-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transicao);
}

.numero-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.numero-icon {
    width: 70px;
    height: 70px;
    background: var(--cor-primaria);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--cor-branco);
    transition: var(--transicao);
}

.numero-item:hover .numero-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(245, 130, 31, 0.4);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--cor-primaria);
    margin-bottom: 0.5rem;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--cor-branco);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.numero-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    line-height: 1.5;
}

.hero-scroll {
    display: none !important; /* REMOVIDO - não deve aparecer */
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 1s both;
    width: auto;
    text-align: center;
}

.scroll-indicator {
    display: none !important; /* REMOVIDO - não deve aparecer */
    visibility: hidden !important;
    opacity: 0 !important;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transicao);
}

.scroll-indicator:hover {
    color: var(--cor-primaria);
}

.scroll-indicator span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator i {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transicao);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--cor-primaria);
    color: var(--cor-branco);
}

.btn-primary:hover {
    background: #e0700d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 130, 31, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--cor-branco);
    border: 2px solid var(--cor-branco);
}

.btn-secondary:hover {
    background: var(--cor-branco);
    color: var(--cor-secundaria);
}

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

.btn-outline:hover {
    background: var(--cor-secundaria);
    color: var(--cor-branco);
}

.btn-white {
    background: var(--cor-branco);
    color: var(--cor-secundaria);
}

.btn-white:hover {
    background: #c0500d;
    color: var(--cor-branco);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* ============================================
   SECTIONS
   ============================================ */
section {
    padding: 50px 0; /* Mobile-first: padding menor */
}

/* Desktop: aumentar padding */
@media (min-width: 769px) {
    section {
        padding: 80px 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.sobre-section .section-header {
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--cor-secundaria);
    margin-bottom: 1rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--cor-primaria), transparent);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--cor-texto-claro);
}

/* ============================================
   SOBRE SECTION
   ============================================ */
.sobre-section {
    background: #ffffff;
    background: var(--cor-branco);
    padding: 60px 0;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.sobre-text p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
    color: var(--cor-texto-claro);
    line-height: 1.7;
}

.sobre-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--cor-texto);
}

.feature-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--cor-primaria);
    color: var(--cor-branco);
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: bold;
    flex-shrink: 0;
}

.sobre-image {
    text-align: center;
}

.sobre-pallet-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.image-placeholder {
    background: var(--cor-cinza-claro);
    border-radius: 10px;
    padding: 4rem;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder i {
    font-size: 5rem;
    color: var(--cor-primaria);
    opacity: 0.5;
}

/* ============================================
   PRODUTOS PRINCIPAIS SECTION
   ============================================ */
.produtos-principais-section {
    background: #ffffff;
    background: var(--cor-branco);
    padding: 80px 0;
    position: relative;
}

.produtos-principais-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.produtos-principais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    width: 100%;
    margin: 0;
    padding: 0;
}

.produto-principal-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 500px; /* Altura fixa para alinhamento */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.produto-principal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

.produto-principal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
    transition: background 0.3s ease;
}

.produto-principal-card:hover .produto-principal-overlay {
    background: rgba(0, 0, 0, 0.6);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.produto-principal-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem 2.5rem 2.5rem;
    width: 100%;
    color: #ffffff !important;
    text-align: left;
    display: flex;
    flex-direction: column;
    min-height: 0; /* Permitir que o conteúdo se ajuste */
    justify-content: flex-start;
    height: 100%;
}

.produto-principal-content * {
    color: #ffffff !important;
}

.produto-principal-content h3,
.produto-principal-content .produto-principal-title {
    color: #ffffff !important;
}

.produto-principal-content p,
.produto-principal-content .produto-principal-subtitle {
    color: #ffffff !important;
    color: rgba(255, 255, 255, 1) !important;
}

.produto-principal-icon {
    width: 90px;
    height: 90px;
    background: #f5821f;
    background: var(--cor-primaria);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    margin-top: 0;
    margin-left: 0;
    margin-right: auto;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(245, 130, 31, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    order: 1; /* Ícone primeiro */
}

/* Garantir que ícone + título tenham altura total fixa para alinhar parágrafos */
.produto-principal-icon {
    height: 90px;
}

/* Garantir altura fixa para ícone + título para alinhar parágrafos */
/* Altura total: ícone (90px) + margin-bottom (1.5rem = 24px) + título (min 3rem = 48px) + margin-bottom (1.5rem = 24px) = ~186px */
.produto-principal-icon,
.produto-principal-title {
    flex-shrink: 0;
}

/* Parágrafos começam na mesma linha após ícone + título */
.produto-principal-subtitle {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.produto-principal-card:hover .produto-principal-icon {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(245, 130, 31, 0.6);
}

.produto-principal-icon i {
    font-size: 2.5rem;
    color: #ffffff !important;
    color: var(--cor-branco) !important;
}

.produto-principal-title {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff !important;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
    order: 2; /* Título depois do ícone */
    flex-shrink: 0;
    min-height: 3rem; /* Altura mínima para alinhamento */
}

.produto-principal-subtitle {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    font-size: 1.05rem;
    font-weight: 400;
    color: #ffffff !important;
    color: rgba(255, 255, 255, 1) !important;
    line-height: 1.7;
    margin: 0;
    order: 3; /* Subtítulo por último */
    margin-top: 0; /* Alinhar no topo após ícone e título */
}

/* Mobile: 1 coluna */
@media (max-width: 768px) {
    .produtos-principais-section {
        padding: 60px 0;
    }
    
    .produtos-principais-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 15px;
    }
    
    .produto-principal-card {
        height: 400px; /* Altura fixa em mobile também */
        width: 100%;
        max-width: 100%;
    }
    
    .produto-principal-content {
        padding: 2.5rem 2rem 2rem;
    }
    
    .produto-principal-title {
        font-size: 1.5rem;
        color: #ffffff !important;
    }
    
    .produto-principal-subtitle {
        font-size: 0.95rem;
        color: #ffffff !important;
    }
    
    .produto-principal-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .produto-principal-icon i {
        font-size: 2rem;
    }
}

/* Tablet: 2 colunas */
@media (min-width: 769px) and (max-width: 1024px) {
    .produtos-principais-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .produtos-principais-grid .produto-principal-card:last-child {
        grid-column: 1 / -1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .produto-principal-card {
        width: 100%;
    }
}

/* ============================================
   SERVIÇOS SECTION
   ============================================ */
.servicos-section {
    background: var(--cor-cinza-claro);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.servico-card {
    background: var(--cor-branco);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transicao);
    box-shadow: 0 5px 20px rgba(0, 34, 79, 0.08);
    border: 1px solid rgba(0, 34, 79, 0.05);
    position: relative;
    overflow: hidden;
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cor-primaria), var(--cor-secundaria));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.servico-card:hover::before {
    transform: scaleX(1);
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 34, 79, 0.15);
    border-color: rgba(245, 130, 31, 0.2);
}

.servico-icon {
    width: 80px;
    height: 80px;
    background: var(--cor-primaria);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.servico-icon i {
    font-size: 2rem;
    color: var(--cor-branco);
}

.servico-card h3 {
    color: var(--cor-secundaria);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.servico-card p {
    color: var(--cor-texto-claro);
    line-height: 1.6;
}

/* ============================================
   SERVIÇOS DETALHADOS
   ============================================ */
.servicos-detalhados-section {
    background: var(--cor-branco);
}

.servicos-grid-detalhado {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.servico-detalhado {
    background: var(--cor-cinza-claro);
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--cor-primaria);
}

.servico-icon-large {
    width: 70px;
    height: 70px;
    background: var(--cor-secundaria);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.servico-icon-large i {
    font-size: 2rem;
    color: var(--cor-branco);
}

.servico-detalhado h3 {
    color: var(--cor-secundaria);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.servico-detalhado p {
    color: var(--cor-texto-claro);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.servico-lista {
    list-style: none;
    padding-left: 0;
}

.servico-lista li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--cor-texto-claro);
}

.servico-lista li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cor-primaria);
    font-weight: bold;
}

/* ============================================
   TIPOS DE BORRACHAS
   ============================================ */
.tipos-borrachas-section {
    background: var(--cor-cinza-claro);
}

.tipos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.tipo-item {
    background: var(--cor-branco);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border-top: 3px solid var(--cor-primaria);
    transition: var(--transicao);
}

.tipo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--cor-sombra);
}

.tipo-item h4 {
    color: var(--cor-secundaria);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.tipo-item p {
    color: var(--cor-texto-claro);
    font-size: 0.95rem;
}

/* ============================================
   DIFERENCIAIS SECTION
   ============================================ */
.diferenciais-section {
    background: var(--cor-branco);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.diferencial-item {
    text-align: center;
    padding: 2.5rem;
    background: var(--cor-cinza-claro);
    border-radius: 15px;
    transition: var(--transicao);
    position: relative;
    overflow: hidden;
}

.diferencial-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 130, 31, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.diferencial-item:hover::before {
    opacity: 1;
}

.diferencial-item:hover {
    transform: translateY(-5px);
    background: var(--cor-branco);
    box-shadow: 0 10px 30px rgba(0, 34, 79, 0.1);
}

.diferencial-item i {
    font-size: 3.5rem;
    color: var(--cor-primaria);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.diferencial-item:hover i {
    transform: scale(1.1) rotate(5deg);
}

.diferencial-item h3 {
    color: var(--cor-secundaria);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.diferencial-item p {
    color: var(--cor-texto-claro);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ============================================
   PROCESSO SECTION
   ============================================ */
.processo-section {
    background: var(--cor-branco);
    padding: 80px 0;
}

.processo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
}

.processo-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cor-primaria), var(--cor-secundaria));
    z-index: 0;
    opacity: 0.2;
}

.processo-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.processo-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--cor-primaria), #ff9d4d);
    color: var(--cor-branco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(245, 130, 31, 0.3);
    transition: var(--transicao);
}

.processo-item:hover .processo-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(245, 130, 31, 0.4);
}

.processo-item h3 {
    color: var(--cor-secundaria);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.processo-item p {
    color: var(--cor-texto-claro);
    line-height: 1.7;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: var(--cor-cinza-claro);
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--cor-branco);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 34, 79, 0.08);
    transition: var(--transicao);
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 34, 79, 0.12);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transicao);
}

.faq-question:hover {
    background: var(--cor-cinza-claro);
}

.faq-question h3 {
    color: var(--cor-secundaria);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: var(--cor-primaria);
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--cor-texto-claro);
    line-height: 1.8;
    margin: 0 0 1rem 0;
}

.faq-answer ol {
    color: var(--cor-texto-claro);
    line-height: 1.8;
    margin: 1rem 0;
    padding-left: 2rem;
}

.faq-answer ol li {
    margin-bottom: 0.5rem;
}

/* ============================================
   CTA WHATSAPP SECTION
   ============================================ */
.cta-whatsapp-section {
    background: var(--cor-branco);
    padding: 60px 0;
    text-align: center;
}

.cta-whatsapp-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-whatsapp-cta {
    background: #25D366;
    color: #ffffff !important;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    min-height: 60px;
}

.btn-whatsapp-cta:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp-cta i {
    font-size: 1.5rem;
}

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

.btn-white-outline:hover {
    background: var(--cor-branco);
    color: var(--cor-secundaria);
    transform: translateY(-2px);
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--cor-secundaria) 0%, #003366 100%);
    color: var(--cor-branco);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ============================================
   HISTÓRIA SECTION
   ============================================ */
.historia-section {
    background: var(--cor-branco);
    padding: 80px 0;
}

.historia-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.historia-text h2 {
    color: var(--cor-secundaria);
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.historia-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--cor-texto-claro);
    line-height: 1.8;
}

/* ============================================
   VALORES SECTION
   ============================================ */
.valores-section {
    background: var(--cor-cinza-claro);
    padding: 80px 0;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.valor-card {
    background: var(--cor-branco);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px var(--cor-sombra);
    transition: var(--transicao);
}

.valor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--cor-sombra-escura);
}

.valor-icon {
    width: 80px;
    height: 80px;
    background: var(--cor-primaria);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.valor-icon i {
    font-size: 2rem;
    color: var(--cor-branco);
}

.valor-card h3 {
    color: var(--cor-secundaria);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.valor-card p {
    color: var(--cor-texto-claro);
    line-height: 1.8;
}

.valor-card ul {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.valor-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--cor-texto-claro);
}

.valor-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--cor-primaria);
    font-size: 1.5rem;
    line-height: 1;
}

/* ============================================
   CONTATO SECTION
   ============================================ */
.contato-section {
    background: var(--cor-branco);
    padding: 80px 0;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contato-info h2 {
    color: var(--cor-secundaria);
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.contato-info > p {
    color: var(--cor-texto-claro);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

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

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--cor-primaria);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: var(--cor-branco);
    font-size: 1.2rem;
}

.info-text h4 {
    color: var(--cor-secundaria);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-text p {
    color: var(--cor-texto-claro);
    margin: 0;
}

.whatsapp-link {
    color: var(--cor-primaria);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transicao);
}

.whatsapp-link:hover {
    color: #e0700d;
}

.social-links-large {
    margin-top: 2rem;
}

.social-links-large h4 {
    color: var(--cor-secundaria);
    margin-bottom: 1rem;
}

.social-links-large .social-links a {
    min-width: auto;
    width: auto;
    height: auto;
    padding: 1rem 1.5rem;
    background: var(--cor-cinza-claro);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--cor-secundaria);
    text-decoration: none;
    transition: var(--transicao);
    border: 2px solid var(--cor-cinza-medio);
    font-weight: 600;
}

.social-links-large .social-links a:hover {
    background: #25D366;
    color: var(--cor-branco);
    border-color: #25D366;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.social-links-large .social-links a i {
    font-size: 1.5rem;
}

.social-links-large .social-links a span {
    font-size: 1rem;
}

/* ============================================
   FORMULÁRIOS
   ============================================ */
.contato-form h2,
.orcamento-form-wrapper h2 {
    color: var(--cor-secundaria);
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.form {
    background: var(--cor-cinza-claro);
    padding: 2.5rem;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

.orcamento-form-wrapper {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--cor-secundaria);
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--cor-cinza-medio);
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    transition: var(--transicao);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--cor-primaria);
    box-shadow: 0 0 0 3px rgba(245, 130, 31, 0.1);
}

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

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* ============================================
   ORÇAMENTO SECTION
   ============================================ */
.orcamento-section {
    background: var(--cor-branco);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Logo de fundo como marca d'água */
.orcamento-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background-image: var(--probbor-logo-url, url('../images/probbor.png'));
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
}

.orcamento-section .container {
    position: relative;
    z-index: 1;
}

.orcamento-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

/* Mobile: layout em coluna */
@media (max-width: 968px) {
    .orcamento-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.orcamento-info h2 {
    color: var(--cor-secundaria);
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.beneficios-lista {
    list-style: none;
    margin-bottom: 2.5rem;
}

.beneficios-lista li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--cor-texto-claro);
    font-size: 1.05rem;
}

.beneficios-lista li i {
    position: absolute;
    left: 0;
    color: var(--cor-primaria);
    font-size: 1.2rem;
}

.info-box {
    background: var(--cor-cinza-claro);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--cor-primaria);
}

.info-box h3 {
    color: var(--cor-secundaria);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-box p {
    color: var(--cor-texto-claro);
    margin-bottom: 1rem;
}

.info-box ul {
    list-style: none;
    padding-left: 0;
}

.info-box ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--cor-texto-claro);
}

.info-box ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--cor-primaria);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #00224f !important;
    background: var(--cor-secundaria) !important;
    color: var(--cor-branco) !important;
    padding: 60px 0 20px !important;
    width: 100% !important;
    display: block !important;
}

.footer-content {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 3rem !important;
    margin-bottom: 3rem !important;
}

.footer-logo-col {
    max-width: 350px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    max-width: 180px !important;
    width: 180px !important;
    height: auto !important;
    display: block;
    object-fit: contain;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1.5rem;
    color: var(--cor-branco);
    font-size: 1.2rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transicao);
}

.footer-col ul li a:hover {
    color: var(--cor-primaria);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.contact-info li a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transicao);
}

.contact-info li a:hover {
    color: var(--cor-primaria);
}

.contact-info i {
    color: var(--cor-primaria);
    width: 20px;
    font-size: 1rem;
    flex-shrink: 0;
}

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

.social-links a {
    min-width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cor-branco);
    text-decoration: none;
    transition: var(--transicao);
    padding: 0 1rem;
    gap: 0.5rem;
}

.social-links a span {
    font-size: 0.9rem;
    font-weight: 500;
}

.social-links a:hover {
    background: #25D366;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.social-links a:hover i {
    transform: scale(1.1);
}

.social-links a i {
    transition: transform 0.3s ease;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.85rem !important;
    font-style: italic;
}

/* ============================================
   RESPONSIVE - MOBILE FIRST
   ============================================ */

/* Mobile First - Base styles já são mobile */
/* Ajustes para telas pequenas */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .top-bar {
        padding: 0.4rem 0;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.7rem;
    }

    .top-bar-item {
        width: 100%;
        justify-content: center;
    }

    .header-content {
        padding: 0.8rem 0;
        position: relative;
    }

    .logo-img {
        max-height: 50px;
        width: auto;
    }

    .nav {
        width: 100%;
    }

    .hero {
        padding: 80px 0 50px;
        min-height: auto;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        margin-bottom: 2rem;
    }

    .btn-cta-destaque {
        padding: 1rem 1.5rem !important;
        font-size: 1rem !important;
        min-height: 50px;
    }

    .sobre-section {
        padding: 40px 0;
    }

    .sobre-content {
        gap: 2rem;
    }

    .sobre-pallet-img {
        max-width: 100%;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .servico-card {
        padding: 1.5rem;
    }

    .faq-question {
        padding: 1rem 1.2rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1.2rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.2rem 1rem;
    }

    .footer {
        padding: 40px 0 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-logo-img {
        max-width: 150px !important;
        width: 150px !important;
    }

    .footer-bottom {
        padding-top: 1.5rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    .cta-whatsapp-section {
        padding: 40px 0;
    }

    .btn-whatsapp-cta {
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
        min-height: 50px;
    }
}

/* Tablets pequenos */
@media (min-width: 481px) and (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .sobre-content {
        grid-template-columns: 1fr;
    }

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

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

/* Tablets */
@media (min-width: 769px) and (max-width: 968px) {
    .top-bar-content {
        gap: 1.5rem;
        font-size: 0.85rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cor-branco);
        box-shadow: 0 5px 10px var(--cor-sombra);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav.active {
        max-height: 500px;
    }

    .nav ul {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        align-items: flex-start;
    }

    .nav a {
        width: 100%;
        padding: 0.5rem 0;
    }

    .btn-whatsapp-menu {
        width: 100%;
        justify-content: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .sobre-content,
    .historia-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contato-content,
    .orcamento-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .top-bar,
    div.top-bar,
    body .top-bar,
    html body .top-bar,
    html body div.top-bar {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        padding: 0.5rem 0;
    }

    .top-bar-content {
        gap: 1rem;
        font-size: 0.8rem;
    }

    .top-bar-item span {
        font-size: 0.85rem;
    }
    
    .header,
    header.header,
    body .header,
    html body .header,
    html body header.header {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
    }

    section {
        padding: 50px 0;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .sobre-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

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

    .tipos-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .faq-question {
        padding: 1.2rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-logo-img {
        max-width: 180px !important;
        width: 180px !important;
    }

    .cta-whatsapp-section {
        padding: 50px 0;
    }

    .orcamento-section {
        padding: 50px 0;
    }

    .orcamento-section::before {
        width: 400px;
        height: 400px;
    }

    .orcamento-form-wrapper {
        padding: 1.5rem;
    }
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed !important; /* FIXO - sempre visível */
    bottom: 30px !important;
    right: 30px !important;
    width: 60px !important;
    height: 60px !important;
    background: #25D366 !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.8rem !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
    z-index: 9999 !important; /* Acima de tudo */
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    animation: pulse 2s infinite !important;
    opacity: 1 !important; /* SEMPRE VISÍVEL */
    visibility: visible !important; /* SEMPRE VISÍVEL */
    transform: scale(1) !important;
}

.whatsapp-float.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: scale(1) !important;
}

.whatsapp-float:hover {
    background: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: #ffffff !important;
    font-size: 1.8rem !important;
    display: block !important;
    line-height: 1 !important;
    width: auto !important;
    height: auto !important;
    position: relative !important;
    z-index: 2 !important;
}

/* Remover todos os fallbacks visuais - apenas usar ícone Font Awesome */
.whatsapp-float::before,
.whatsapp-float::after {
    display: none !important;
    content: none !important;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #333333;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #333333;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
    }
}

/* Mobile: ajustar posição do botão flutuante e formulário */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 1.6rem;
    }

    .whatsapp-tooltip {
        display: none; /* Esconder tooltip em mobile */
    }

    /* Formulário mobile - melhor organização */
    .orcamento-section {
        padding: 50px 0;
    }

    .orcamento-section::before {
        width: 400px;
        height: 400px;
    }

    .orcamento-form-wrapper {
        padding: 1.5rem;
        max-width: 100%;
    }

    .form {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    .form-group {
        margin-bottom: 1.2rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.8rem;
        font-size: 16px; /* Evita zoom no iOS */
        width: 100%;
        box-sizing: border-box;
    }

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

    .btn-orcamento-submit {
        width: 100%;
        padding: 1rem !important;
        font-size: 1rem !important;
        min-height: 50px;
    }
}

/* Ajustes para formulário de orçamento */
.orcamento-form-wrapper {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.orcamento-form {
    position: relative;
    z-index: 2;
}

