/* ================================================
   MUNDIAL FORRAÇÕES T.A - Modern Design System
   ================================================ */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --primary: #FF6B35;
    --primary-dark: #e55a27;
    --primary-light: #ff8c5a;
    --primary-glow: rgba(255, 107, 53, 0.25);

    /* Neutrals */
    --black: #0a0a0f;
    --dark: #12121a;
    --dark-2: #1a1a2e;
    --dark-3: #2a2a3e;
    --gray-600: #4a4a5a;
    --gray-400: #8888a0;
    --gray-200: #c8c8d8;
    --gray-100: #e8e8f0;
    --light: #f4f4f8;
    --white: #ffffff;

    /* Accents */
    --whatsapp: #25D366;
    --instagram: #E4405F;
    --gold: #FFC107;

    /* Typography */
    --font-primary: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 100px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.16);
    --shadow-glow: 0 0 40px var(--primary-glow);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--gray-600);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

/* ---------- Gradient Text ---------- */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- Section Defaults ---------- */
.section {
    padding: var(--section-padding);
    position: relative;
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-glow);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.section-tag i {
    font-size: 0.8rem;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-400);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* ================================================
   HEADER / NAVIGATION
   ================================================ */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition-base);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.navbar {
    padding: 16px 0;
    transition: var(--transition-base);
}

header.scrolled .navbar {
    padding: 10px 0;
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    z-index: 1001;
}

.logo-img {
    height: 48px;
    width: 48px;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.logo-name {
    display: block;
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
    transition: var(--transition-base);
}

header.scrolled .logo-name {
    color: var(--dark);
}

.logo-name strong {
    color: var(--primary);
}

.tagline {
    display: block;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: var(--transition-base);
}

header.scrolled .tagline {
    color: var(--gray-400);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-link {
    display: inline-block;
    padding: 8px 16px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
}

header.scrolled .nav-link {
    color: var(--gray-600);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

header.scrolled .nav-link:hover,
header.scrolled .nav-link.active {
    color: var(--primary);
    background: var(--primary-glow);
}

.btn-nav {
    background: var(--primary) !important;
    color: var(--white) !important;
    border-radius: var(--radius-full);
    padding: 8px 24px;
    font-weight: 600;
}

.btn-nav:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px var(--primary-glow);
}

/* Hamburger Menu */
.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    align-items: center;
    justify-content: center;
}

.hamburger {
    width: 24px;
    height: 2px;
    background: var(--white);
    display: block;
    position: relative;
    transition: var(--transition-base);
}

header.scrolled .hamburger,
header.scrolled .hamburger::before,
header.scrolled .hamburger::after {
    background: var(--dark);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--white);
    left: 0;
    transition: var(--transition-base);
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

.mobile-menu-toggle.active .hamburger {
    background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
    background: var(--primary);
}

.mobile-menu-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
    background: var(--primary);
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--dark);
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 107, 53, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 140, 90, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(255, 107, 53, 0.05) 0%, transparent 40%);
    z-index: 0;
}

/* Animated Background Shapes */
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -150px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-light);
    bottom: -100px;
    left: -100px;
    animation-delay: -7s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: 50%;
    left: 50%;
    animation-delay: -14s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(15px, 15px) scale(1.02); }
}

.hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    max-width: 780px;
}

.hero-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.25);
    color: var(--primary-light);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease both;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s 0.15s ease both;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    max-width: 620px;
    animation: fadeInUp 0.8s 0.3s ease both;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s 0.45s ease both;
}

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

.stat-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.12);
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s 0.6s ease both;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    animation: fadeInUp 0.8s 1s ease both;
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 600;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; height: 40px; }
    50% { opacity: 0.4; height: 24px; }
}

/* ================================================
   HISTÓRIA - Onda Sinusoidal Horizontal + Caminhões
   Cabe inteiro na viewport (sem scroll)
   ================================================ */
.section-historia {
    background: var(--light);
    overflow: hidden;
    /* Ocupa exatamente a viewport menos o header fixo */
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 90px 0 40px; /* header ~70px + folga */
    scroll-margin-top: 70px;
}

.section-historia > .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.section-historia .section-header {
    margin-bottom: 24px;
}

/* Wrapper da timeline com onda */
.timeline-wave-wrap {
    position: relative;
    width: 100%;
    flex: 1;
    min-height: 0; /* permite shrink */
}

/* SVG da onda sinusoidal - cobre todo o container */
.timeline-wave-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Animação das dashes correndo pela onda */
.wave-dash {
    animation: waveDashFlow 25s linear infinite;
}

@keyframes waveDashFlow {
    to { stroke-dashoffset: -1200; }
}

/* Grid em 4 colunas — compacto para caber na tela */
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    position: relative;
    z-index: 1;
    min-height: 420px;
}

/* Cada item é uma coluna flex */
.tl-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0 2px;
}

/* Itens no pico: card em cima, conector, caminhão embaixo → alinhado ao topo */
.tl-up {
    justify-content: flex-start;
}

/* Itens no vale: caminhão em cima, conector, card embaixo → alinhado ao fundo */
.tl-down {
    justify-content: flex-end;
}

/* ---- Card ---- */
.tl-card {
    background: var(--white);
    padding: 16px 14px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
    transition: var(--transition-base);
    text-align: center;
    max-width: 240px;
    width: 100%;
}

.tl-item:hover .tl-card {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-glow);
    transform: translateY(-4px);
}

/* Step badge */
.tl-step {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--primary);
    background: var(--primary-glow);
    padding: 2px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 6px;
    letter-spacing: 0.06em;
}

.tl-card h3 {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.tl-card p {
    font-size: 0.78rem;
    line-height: 1.55;
    color: var(--gray-400);
}

.tl-card strong {
    color: var(--primary);
    font-weight: 600;
}

/* ---- Conector (linha vertical card → caminhão) ---- */
.tl-connector {
    width: 2px;
    height: 24px;
    flex-shrink: 0;
}

.tl-up .tl-connector {
    background: linear-gradient(to bottom, var(--primary-glow), var(--primary) 80%);
}

.tl-down .tl-connector {
    background: linear-gradient(to bottom, var(--primary) 20%, var(--primary-glow));
}

/* ---- Caminhão (sentado na onda) ---- */
.tl-truck-wrap {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 0 3px var(--light),
        0 0 0 6px rgba(255, 107, 53, 0.2),
        0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition-base);
    flex-shrink: 0;
    z-index: 2;
}

.tl-item:hover .tl-truck-wrap {
    box-shadow:
        0 0 0 3px var(--light),
        0 0 0 6px var(--primary),
        0 6px 20px rgba(255, 107, 53, 0.25);
    transform: scale(1.12);
}

.tl-truck-svg {
    width: 26px;
    height: 13px;
    color: var(--primary);
    transition: var(--transition-base);
}

.tl-item:hover .tl-truck-svg {
    color: var(--primary-dark);
}

/* Animação stagger nos itens */
.tl-item:nth-child(1) { animation: fadeInUp 0.6s 0.1s ease both; }
.tl-item:nth-child(2) { animation: fadeInUp 0.6s 0.3s ease both; }
.tl-item:nth-child(3) { animation: fadeInUp 0.6s 0.5s ease both; }
.tl-item:nth-child(4) { animation: fadeInUp 0.6s 0.7s ease both; }

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

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 24px;
}

.servico-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: var(--transition-base);
    transform-origin: left;
}

.servico-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.servico-destaque {
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.03) 0%, var(--white) 100%);
}

.servico-badge {
    position: absolute;
    top: 24px;
    right: -55px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 65px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transform: rotate(45deg);
    z-index: 1;
}

.servico-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-glow);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-base);
}

.servico-card:hover .servico-icon {
    background: var(--primary);
}

.servico-icon i {
    font-size: 1.6rem;
    color: var(--primary);
    transition: var(--transition-base);
}

.servico-card:hover .servico-icon i {
    color: var(--white);
}

.servico-card h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.servico-card p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--gray-400);
    margin-bottom: 20px;
}

.servico-preco {
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}

.preco-label {
    font-size: 0.8rem;
    color: var(--gray-400);
    display: block;
    margin-bottom: 2px;
}

.preco-valor {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

/* Info Bar */
.servicos-info-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 48px;
    padding: 32px 40px;
    background: var(--dark);
    border-radius: var(--radius-xl);
    flex-wrap: wrap;
}

.info-bar-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--white);
}

.info-bar-item i {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.info-bar-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 2px;
}

.info-bar-item p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.info-bar-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
}

/* ================================================
   VANTAGENS SECTION
   ================================================ */
.section-vantagens {
    background: var(--light);
}

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

.vantagem-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid transparent;
    transition: var(--transition-base);
    position: relative;
}

.vantagem-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-glow);
}

.vantagem-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-base);
    box-shadow: 0 8px 20px var(--primary-glow);
}

.vantagem-card:hover .vantagem-icon {
    transform: scale(1.1) rotate(5deg);
}

.vantagem-icon i {
    font-size: 1.4rem;
    color: var(--white);
}

.vantagem-card h3 {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.vantagem-card p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--gray-400);
}

/* ================================================
   PORTFÓLIO SECTION
   ================================================ */
.section-portfolio {
    background: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.portfolio-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    cursor: pointer;
    border: 1px solid var(--gray-100);
}

.portfolio-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(229, 90, 39, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay i {
    font-size: 2rem;
    color: var(--white);
    transform: scale(0.5);
    transition: var(--transition-base);
}

.portfolio-item:hover .portfolio-overlay i {
    transform: scale(1);
}

.portfolio-info {
    padding: 20px 24px;
}

.portfolio-info h3 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.portfolio-info p {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.portfolio-note {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    padding: 16px 24px;
    background: var(--primary-glow);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
}

.portfolio-note i {
    font-size: 1.2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.portfolio-note p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
}

.portfolio-note strong {
    color: var(--primary);
}

/* ================================================
   AVALIAÇÕES SECTION
   ================================================ */
.section-avaliacoes {
    background: var(--light);
    overflow: hidden;
}

/* Slider */
.avaliacoes-slider {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.avaliacoes-track-wrapper {
    overflow: hidden;
    flex: 1;
    border-radius: var(--radius-lg);
}

.avaliacoes-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.avaliacao-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: var(--transition-base);
    flex-shrink: 0;
    position: relative;
    box-sizing: border-box;
}

.avaliacao-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 1.8rem;
    color: rgba(255, 107, 53, 0.08);
}

.avaliacao-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-glow);
}

.avaliacao-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.avaliacao-stars i {
    font-size: 0.9rem;
    color: var(--gold);
}

.avaliacao-texto {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 20px;
}

.avaliacao-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}

.avaliacao-foto {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-glow);
}

.avaliacao-author-info h4 {
    font-family: var(--font-primary);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.avaliacao-author-info span {
    font-size: 0.78rem;
    color: var(--gray-400);
}

.avaliacao-author-info span i {
    color: var(--primary);
    margin-right: 4px;
    font-size: 0.7rem;
}

/* Slider Buttons */
.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--gray-200);
    background: var(--white);
    color: var(--dark);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    flex-shrink: 0;
}

.slider-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 15px var(--primary-glow);
    transform: scale(1.05);
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.slider-btn:disabled:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--gray-200);
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-200);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    padding: 0;
}

.slider-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: var(--radius-full);
}

/* Resumo */
.avaliacoes-resumo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    margin-top: 48px;
    padding: 36px 40px;
    background: var(--dark);
    border-radius: var(--radius-xl);
    flex-wrap: wrap;
}

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

.resumo-numero {
    display: inline;
    font-family: var(--font-primary);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.resumo-plus {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
}

.resumo-stars {
    margin-bottom: 4px;
}

.resumo-stars i {
    font-size: 0.85rem;
    color: var(--gold);
}

.resumo-label {
    display: block;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    margin-top: 4px;
}

.resumo-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
}

/* ================================================
   CONTATO SECTION
   ================================================ */
.section-contato {
    background: var(--white);
}

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

.contato-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contato-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    border-radius: var(--radius-lg);
    background: var(--light);
    border: 1px solid transparent;
    transition: var(--transition-base);
    text-decoration: none;
    color: inherit;
}

.contato-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-glow);
}

.contato-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contato-whatsapp .contato-card-icon {
    background: rgba(37, 211, 102, 0.12);
    color: var(--whatsapp);
}

.contato-instagram .contato-card-icon {
    background: rgba(228, 64, 95, 0.12);
    color: var(--instagram);
}

.contato-endereco .contato-card-icon {
    background: var(--primary-glow);
    color: var(--primary);
}

.contato-especialidade .contato-card-icon {
    background: rgba(42, 42, 62, 0.1);
    color: var(--dark-2);
}

.contato-card-info h3 {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.contato-card-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.contato-card-action {
    font-size: 0.78rem;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 6px;
}

.contato-card-action i {
    font-size: 0.65rem;
    transition: var(--transition-base);
}

.contato-card:hover .contato-card-action i {
    transform: translateX(4px);
}

/* Map */
.mapa-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

#map {
    width: 100%;
    height: 100%;
    min-height: 420px;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: var(--dark);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.footer-logo-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.footer-brand h3 {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 4px;
}

.footer-brand h3 strong {
    color: var(--primary);
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    transition: var(--transition-fast);
}

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

.footer-social {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-address {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}

.footer-address i {
    color: var(--primary);
    margin-right: 6px;
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ================================================
   WHATSAPP FLOAT BUTTON
   ================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.7rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-base);
    animation: pulse 2s infinite;
}

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

.whatsapp-float i {
    color: var(--white);
}

.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    background: var(--dark);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
}

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

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

/* ================================================
   LIGHTBOX
   ================================================ */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    animation: zoomIn 0.3s;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    color: var(--white);
    font-size: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.lightbox-caption {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    text-align: center;
    padding: 12px 24px;
    background: rgba(10, 10, 15, 0.8);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from {
        transform: scale(0.85);
        opacity: 0;
    }
    to {
        transform: scale(1);
        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), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

/* Animate on scroll */
[data-animate] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================
   GLOBAL - Scroll margin para anchor links
   ================================================ */
section[id] {
    scroll-margin-top: 80px;
}

/* Portfolio grid — valor base seguro para telas menores */
.portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* ================================================
   RESPONSIVE - TABLET LANDSCAPE (≤1024px)
   ================================================ */
@media (max-width: 1024px) {
    .servicos-grid,
    .vantagens-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    /* Timeline: compactar para tablet landscape */
    .section-historia {
        padding: 80px 0 30px;
    }

    .timeline-grid {
        min-height: 360px;
        gap: 10px;
    }

    .tl-card {
        padding: 14px 12px;
        max-width: 220px;
    }

    .tl-card h3 {
        font-size: 0.85rem;
    }

    .tl-card p {
        font-size: 0.74rem;
    }

    .tl-connector {
        height: 18px;
    }

    .tl-truck-wrap {
        width: 42px;
        height: 42px;
    }

    .tl-truck-svg {
        width: 22px;
        height: 11px;
    }

    .contato-content {
        gap: 24px;
    }

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

/* ================================================
   RESPONSIVE - TABLET PORTRAIT (≤768px)
   ================================================ */
@media (max-width: 768px) {
    :root {
        --section-padding: 72px 0;
    }

    /* ---- Mobile Menu com overlay ---- */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        height: 100dvh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 32px 40px;
        gap: 4px;
        transition: var(--transition-slow);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    /* Overlay escuro atras do menu */
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
        z-index: -1;
    }

    .nav-menu.active::before {
        opacity: 1;
    }

    .nav-link {
        color: var(--gray-600) !important;
        padding: 14px 16px;
        border-radius: var(--radius-sm);
        font-size: 1rem;
        width: 100%;
    }

    .nav-link:hover,
    .nav-link.active {
        background: var(--primary-glow) !important;
        color: var(--primary) !important;
    }

    .btn-nav {
        margin-top: 16px;
        text-align: center;
        justify-content: center;
        width: 100%;
    }

    /* ---- Hero ---- */
    .hero {
        padding: 120px 20px 64px;
        text-align: center;
        min-height: auto;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-badge-top {
        font-size: 0.8rem;
        padding: 6px 16px;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
        margin-bottom: 18px;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 32px;
    }

    .hero-stats {
        justify-content: center;
        gap: 24px;
        margin-bottom: 36px;
    }

    .hero-stat-divider {
        height: 36px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .hero-actions {
        justify-content: center;
        gap: 12px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    /* ---- Section Header ---- */
    .section-header {
        margin-bottom: 36px;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    /* ---- Serviços ---- */
    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .servico-card {
        padding: 28px 22px;
    }

    .servico-badge {
        top: 18px;
        right: -52px;
        padding: 5px 60px;
        font-size: 0.65rem;
    }

    .servico-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }

    .servico-icon i {
        font-size: 1.4rem;
    }

    .servico-card h3 {
        font-size: 1.05rem;
    }

    .servico-card p {
        font-size: 0.88rem;
        margin-bottom: 16px;
    }

    /* Info Bar */
    .servicos-info-bar {
        flex-direction: column;
        gap: 20px;
        padding: 28px 24px;
        border-radius: var(--radius-lg);
        margin-top: 32px;
    }

    .info-bar-divider {
        width: 48px;
        height: 1px;
    }

    .info-bar-item {
        flex-direction: row;
        text-align: left;
        gap: 14px;
    }

    .info-bar-item i {
        font-size: 1.3rem;
    }

    .info-bar-item strong {
        font-size: 0.9rem;
    }

    .info-bar-item p {
        font-size: 0.8rem;
    }

    /* ---- Vantagens: 2 colunas no tablet ---- */
    .vantagens-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .vantagem-card {
        padding: 28px 20px;
    }

    .vantagem-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 16px;
    }

    .vantagem-icon i {
        font-size: 1.2rem;
    }

    .vantagem-card h3 {
        font-size: 0.98rem;
        margin-bottom: 8px;
    }

    .vantagem-card p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    /* ---- Portfólio ---- */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .portfolio-image {
        height: 200px;
    }

    .portfolio-info {
        padding: 16px 20px;
    }

    .portfolio-info h3 {
        font-size: 0.95rem;
    }

    .portfolio-info p {
        font-size: 0.82rem;
    }

    .portfolio-note {
        margin-top: 24px;
        padding: 14px 20px;
    }

    .portfolio-note p {
        font-size: 0.85rem;
    }

    /* ---- Avaliações: esconder setas, swipe + dots ---- */
    .slider-btn {
        display: none;
    }

    .avaliacoes-slider {
        gap: 0;
    }

    .avaliacao-card {
        padding: 28px 22px;
    }

    .avaliacao-texto {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 16px;
    }

    .avaliacao-author {
        padding-top: 14px;
    }

    .avaliacao-foto {
        width: 42px;
        height: 42px;
    }

    .avaliacao-author-info h4 {
        font-size: 0.88rem;
    }

    .avaliacoes-resumo {
        gap: 32px;
        padding: 28px 24px;
        margin-top: 36px;
    }

    .resumo-divider {
        display: none;
    }

    .resumo-item {
        flex: 1;
        min-width: 80px;
    }

    .resumo-numero {
        font-size: 2.4rem;
    }

    .resumo-label {
        font-size: 0.78rem;
    }

    /* ---- Contato: 2 colunas no tablet ---- */
    .contato-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contato-cards {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .contato-card {
        padding: 20px 16px;
    }

    .contato-card-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .contato-card-info h3 {
        font-size: 0.8rem;
    }

    .contato-card-value {
        font-size: 0.92rem;
    }

    .contato-card-action {
        font-size: 0.75rem;
    }

    #map {
        min-height: 300px;
    }

    /* ---- Footer: brand full width, links + contato lado a lado ---- */
    .footer {
        padding: 48px 0 0;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
        justify-content: center;
        text-align: center;
    }

    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-brand h3 {
        font-size: 1.05rem;
    }

    .footer-brand p {
        font-size: 0.82rem;
    }

    .footer-logo-img {
        width: 48px;
        height: 48px;
    }

    /* ---- Historia: vertical 2 colunas, sem onda, sem trucks ---- */
    .section-historia {
        min-height: auto;
        padding: 60px 0 40px;
    }

    .timeline-wave-svg {
        display: none;
    }

    .timeline-grid {
        grid-template-columns: 1fr 1fr;
        min-height: auto;
        gap: 16px;
    }

    .tl-up,
    .tl-down {
        justify-content: flex-start;
    }

    .tl-down {
        flex-direction: column;
    }

    /* Esconder trucks e connectors para layout mais limpo */
    .tl-truck-wrap,
    .tl-connector {
        display: none;
    }

    .tl-card {
        max-width: 100%;
        padding: 20px 16px;
    }

    .tl-card h3 {
        font-size: 0.88rem;
    }

    .tl-card p {
        font-size: 0.78rem;
    }

    .tl-step {
        font-size: 0.62rem;
        padding: 2px 10px;
        margin-bottom: 8px;
    }
}

/* ================================================
   RESPONSIVE - MOBILE (≤640px)
   ================================================ */
@media (max-width: 640px) {
    /* Vantagens: 1 coluna em mobile */
    .vantagens-grid {
        grid-template-columns: 1fr;
    }

    /* Contato: 1 coluna em mobile */
    .contato-cards {
        grid-template-columns: 1fr;
    }

    /* Avaliacoes resumo: flex-wrap p/ 1 linha */
    .avaliacoes-resumo {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 20px;
        padding: 24px 20px;
    }
}

/* ================================================
   RESPONSIVE - MOBILE SMALL (≤480px)
   ================================================ */
@media (max-width: 480px) {
    :root {
        --section-padding: 56px 0;
    }

    .container {
        padding: 0 16px;
    }

    /* ---- Hero ---- */
    .hero {
        padding: 110px 16px 48px;
    }

    .hero-badge-top {
        font-size: 0.75rem;
        padding: 5px 14px;
        margin-bottom: 16px;
    }

    .hero-badge-top i {
        font-size: 0.7rem;
    }

    .hero-title {
        font-size: 1.65rem;
        margin-bottom: 14px;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 0.9rem;
        line-height: 1.65;
        margin-bottom: 28px;
    }

    .hero-stats {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 28px;
    }

    .hero-stat {
        min-width: 70px;
    }

    .hero-stat-divider {
        display: none;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-plus {
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: 0.75rem;
        margin-top: 2px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.9rem;
    }

    /* ---- Section ---- */
    .section-tag {
        font-size: 0.78rem;
        padding: 6px 16px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.88rem;
    }

    .section-header {
        margin-bottom: 28px;
    }

    /* ---- Historia: 1 coluna ---- */
    .section-historia {
        min-height: auto;
        padding: 48px 0 28px;
    }

    .section-historia .section-header {
        margin-bottom: 20px;
    }

    .timeline-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .tl-card {
        padding: 18px 14px;
        border-radius: var(--radius-md);
    }

    .tl-card h3 {
        font-size: 0.85rem;
        margin-bottom: 4px;
    }

    .tl-card p {
        font-size: 0.76rem;
        line-height: 1.5;
    }

    .tl-step {
        font-size: 0.6rem;
        padding: 2px 10px;
    }

    /* ---- Serviços ---- */
    .servico-card {
        padding: 24px 18px;
    }

    .servico-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 14px;
    }

    .servico-icon i {
        font-size: 1.3rem;
    }

    .servico-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .servico-card p {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 14px;
    }

    .preco-valor {
        font-size: 1.25rem;
    }

    .servicos-info-bar {
        gap: 16px;
        padding: 22px 18px;
        margin-top: 24px;
    }

    .info-bar-item i {
        font-size: 1.2rem;
    }

    .info-bar-item strong {
        font-size: 0.85rem;
    }

    .info-bar-item p {
        font-size: 0.78rem;
    }

    .info-bar-divider {
        width: 40px;
    }

    /* ---- Vantagens ---- */
    .vantagem-card {
        padding: 24px 18px;
    }

    .vantagem-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 14px;
    }

    .vantagem-icon i {
        font-size: 1.1rem;
    }

    .vantagem-card h3 {
        font-size: 0.95rem;
    }

    .vantagem-card p {
        font-size: 0.84rem;
    }

    /* ---- Portfolio ---- */
    .portfolio-grid {
        gap: 12px;
    }

    .portfolio-image {
        height: 180px;
    }

    .portfolio-info {
        padding: 14px 16px;
    }

    .portfolio-info h3 {
        font-size: 0.92rem;
    }

    .portfolio-info p {
        font-size: 0.8rem;
    }

    .portfolio-note {
        margin-top: 20px;
        padding: 12px 16px;
    }

    .portfolio-note i {
        font-size: 1rem;
    }

    .portfolio-note p {
        font-size: 0.82rem;
    }

    /* ---- Avaliações ---- */
    .avaliacao-card {
        padding: 24px 18px;
    }

    .avaliacao-stars {
        margin-bottom: 12px;
    }

    .avaliacao-stars i {
        font-size: 0.82rem;
    }

    .avaliacao-texto {
        font-size: 0.88rem;
        line-height: 1.65;
        margin-bottom: 14px;
    }

    .avaliacao-author {
        padding-top: 12px;
        gap: 10px;
    }

    .avaliacao-foto {
        width: 38px;
        height: 38px;
    }

    .avaliacao-author-info h4 {
        font-size: 0.85rem;
    }

    .avaliacao-author-info span {
        font-size: 0.74rem;
    }

    .slider-dots {
        margin-top: 16px;
    }

    .avaliacoes-resumo {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 24px 20px;
        margin-top: 28px;
    }

    .resumo-numero {
        font-size: 2rem;
    }

    .resumo-plus {
        font-size: 1.2rem;
    }

    .resumo-label {
        font-size: 0.76rem;
    }

    /* ---- Contato ---- */
    .contato-card {
        padding: 18px 14px;
        gap: 12px;
    }

    .contato-card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .contato-card-info h3 {
        font-size: 0.78rem;
    }

    .contato-card-value {
        font-size: 0.88rem;
    }

    .contato-card-action {
        font-size: 0.72rem;
    }

    #map {
        min-height: 260px;
    }

    /* ---- Footer ---- */
    .footer {
        padding: 40px 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }

    .footer-brand {
        grid-column: auto;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .footer-logo-img {
        width: 44px;
        height: 44px;
    }

    .footer-brand h3 {
        font-size: 1rem;
    }

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

    .footer-links h4,
    .footer-contact h4 {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .footer-links a {
        font-size: 0.84rem;
    }

    .footer-address {
        font-size: 0.8rem;
    }

    .footer-bottom {
        padding: 18px 0;
    }

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

    /* ---- WhatsApp Float ---- */
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 16px;
        right: 16px;
        font-size: 1.4rem;
    }

    .whatsapp-tooltip {
        display: none;
    }
}
