/* ==========================================================================
   CSS VARIABLE SYSTEM & DESIGN TOKENS
   ========================================================================== */
:root {
    /* Color Palette */
    --primary: #0B192C;
    --primary-light: #1E3E62;
    --primary-deep: #050C16;
    --accent: #F37021;
    --accent-hover: #E05A12;
    --accent-light: rgba(243, 112, 33, 0.1);
    --accent-glow: rgba(243, 112, 33, 0.4);
    --whatsapp: #25D366;
    --whatsapp-hover: #20BA5A;
    
    /* Neutral Tones */
    --bg-light: #F8FAFC;
    --bg-neutral: #F1F5F9;
    --bg-dark: #0B192C;
    --text-dark: #0F172A;
    --text-muted: #475569;
    --text-light: #94A3B8;
    --text-white: #FFFFFF;
    --border-color: #E2E8F0;
    --border-light: rgba(255, 255, 255, 0.08);
    
    /* Layout & Styling Values */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 30px rgba(243, 112, 33, 0.25);
    --shadow-glow-blue: 0 0 30px rgba(30, 62, 98, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

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

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

ul {
    list-style: none;
}

/* ==========================================================================
   UTILITY CLASSES & REUSABLE LAYOUTS
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent), #FF8C42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-blue {
    color: var(--primary-light);
}

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

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

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

/* Section Common Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #E05A12);
    color: var(--text-white);
    box-shadow: 0 4px 14px rgba(243, 112, 33, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 112, 33, 0.45);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform var(--transition-slow);
}

.btn-primary:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

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

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ==========================================================================
   HEADER & NAVIGATION BAR (GLASSMORPHISM)
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition-normal);
    padding: 20px 0;
}

.header.scrolled {
    background-color: rgba(11, 25, 44, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
    transition: var(--transition-normal);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.header.scrolled .logo-text {
    color: var(--text-white);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
}

.header.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.8);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition-normal);
    transform: translateX(-50%);
}

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

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

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-cta-mobile {
    display: none;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

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

.header.scrolled .hamburger {
    background-color: var(--text-white);
}

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

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

/* Menu hambúrguer aberto */
.nav-toggle.open .hamburger {
    background-color: transparent;
}
.nav-toggle.open .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}
.nav-toggle.open .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* ==========================================================================
   HERO SECTION (TECNOLÓGICO & PREMIUM)
   ========================================================================== */
.hero {
    position: relative;
    background-color: var(--bg-dark);
    padding: 160px 0 100px 0;
    overflow: hidden;
}

/* Glowing background artifacts */
.hero-glow-orange {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(243, 112, 33, 0.18) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(80px);
}

.hero-glow-blue {
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(30, 62, 98, 0.25) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(80px);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.badge-tech {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.badge-tech svg {
    color: var(--accent);
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    max-width: 600px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-whatsapp-hero {
    background-color: var(--whatsapp);
    color: var(--text-white);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-hero:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.btn-secondary-hero {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
}

.btn-secondary-hero:hover {
    border-color: var(--accent);
    background-color: rgba(243, 112, 33, 0.1);
    transform: translateY(-2px);
}

/* Floating Badges */
.hero-badges-wrapper {
    display: flex;
    gap: 32px;
}

.hero-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-icon {
    font-size: 1.5rem;
    background-color: rgba(243, 112, 33, 0.15);
    border: 1px solid rgba(243, 112, 33, 0.25);
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

.badge-info h4 {
    font-size: 0.95rem;
    color: var(--text-white);
}

.badge-info p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Right Column: Visual and Mockup Floating */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-glow-blue);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-image {
    width: 100%;
    max-width: 420px;
    border-radius: var(--radius-lg);
}

.glow-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 50%, rgba(243, 112, 33, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.diagonal-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: var(--bg-light);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

/* ==========================================================================
   SEÇÃO SOBRE (INFORMAÇÕES CORPORATIVAS & ESTATÍSTICAS)
   ========================================================================== */
.sobre {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.sobre-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

/* Stats Graphic Box */
.sobre-media {
    position: relative;
    border-radius: var(--radius-lg);
}

.sobre-side-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.stats-card-main {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--bg-dark);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 280px;
    z-index: 10;
}

.stats-header {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-white);
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.2;
    margin-top: 4px;
}

.sobre-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.sobre-content > p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

/* Grid of 6 Benefit Cards */
.sobre-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.sobre-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.sc-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.sobre-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.sobre-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ==========================================================================
   SEÇÃO BENEFÍCIOS (GRID DE ÍCONES MODERNOS)
   ========================================================================== */
.beneficios {
    padding: 100px 0;
    background-color: var(--bg-neutral);
    position: relative;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.beneficio-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.beneficio-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #FF8C42);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

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

.beneficio-card:hover::after {
    transform: scaleX(1);
}

.bc-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    width: 54px;
    border-radius: var(--radius-md);
    background-color: var(--accent-light);
    color: var(--accent);
    margin-bottom: 20px;
    transition: var(--transition-normal);
}

.beneficio-card:hover .bc-icon-wrapper {
    background-color: var(--accent);
    color: var(--text-white);
}

.beneficio-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.beneficio-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   SEÇÃO SEGMENTOS (INTERATIVA & PREMIUM)
   ========================================================================== */
.segmentos {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.segmentos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.segmento-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.seg-img-wrapper {
    height: 180px;
    position: relative;
    overflow: hidden;
}

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

.segmento-card:hover .seg-img {
    transform: scale(1.1);
}

.seg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 25, 44, 0.6) 0%, transparent 100%);
}

.seg-content {
    padding: 24px;
    position: relative;
}

.seg-icon {
    position: absolute;
    top: -24px;
    right: 24px;
    background-color: var(--accent);
    height: 48px;
    width: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--white);
    color: var(--text-white);
}

.seg-content h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.seg-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   SEÇÃO DIFERENCIAIS (SIMULAÇÃO DE ESPAÇO)
   ========================================================================== */
.diferenciais {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    position: relative;
    overflow: hidden;
}

.differentials-container {
    position: relative;
    z-index: 10;
}

.differentials-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.diff-content .section-title {
    margin-bottom: 24px;
}

.diff-para {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.diff-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.diff-point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.dp-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    background-color: rgba(243, 112, 33, 0.15);
    border: 1px solid rgba(243, 112, 33, 0.3);
    border-radius: 50%;
    height: 48px;
    width: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diff-point h4 {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 4px;
}

.diff-point p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Simulation Layout (Right) */
.diff-interactive {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 32px;
    color: var(--text-white);
    box-shadow: var(--shadow-lg);
}

.comparison-card h4 {
    font-size: 1.25rem;
    color: var(--text-white);
    margin-bottom: 12px;
}

.comparison-card > p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.sim-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.sim-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sim-label {
    font-size: 0.85rem;
    font-weight: 600;
}

.sim-bar-wrapper {
    height: 28px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

.sim-bar {
    height: 100%;
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding-left: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    transition: width 1s ease-in-out;
}

.orange-bar {
    background: linear-gradient(90deg, var(--accent), #FF8C42);
}

.blue-bar {
    background-color: var(--primary-light);
}

/* Grid schematic */
.compact-display-container {
    border: 1px dashed rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-measure {
    position: relative;
    width: 180px;
    height: 180px;
    border: 2px solid var(--accent);
    background-color: rgba(243, 112, 33, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.m-width {
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 700;
}

.m-depth {
    position: absolute;
    right: -32px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 700;
}

.machine-box {
    width: 90px;
    height: 140px;
    background-color: var(--primary-deep);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    position: relative;
    box-shadow: var(--shadow-glow);
}

.box-screen {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 40px;
    background-color: #0b192c;
    border: 1px solid var(--accent);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screen-pulse {
    font-size: 0.5rem;
    color: var(--accent);
    font-weight: bold;
    animation: pulse 1.5s ease-in-out infinite;
}

/* ==========================================================================
   SEÇÃO CONTATO (FORMULÁRIO MODERNO & MAPA)
   ========================================================================== */
.contato {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.contato-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.ci-header {
    margin-bottom: 32px;
}

.ci-header h3 {
    font-size: 1.75rem;
    margin-bottom: 10px;
}

.ci-header p {
    color: var(--text-muted);
}

.ci-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.ci-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 18px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.ci-item:not(.no-hover):hover {
    transform: translateX(6px);
    border-color: var(--accent);
}

.ci-icon {
    font-size: 1.75rem;
    background-color: var(--accent-light);
    height: 52px;
    width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.ci-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.ci-val {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
}

/* Director Profile Card */
.profile-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: var(--bg-neutral);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent);
}

.profile-avatar {
    height: 48px;
    width: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-card h4 {
    font-size: 1.05rem;
    color: var(--primary);
}

.profile-title {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Interactive Form */
.contato-form-wrapper {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact-form h4 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.contact-form > p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* Inputs styling with floating label mechanics */
.form-group {
    position: relative;
    margin-bottom: 24px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--accent);
    background-color: var(--white);
    box-shadow: 0 0 0 4px var(--accent-light);
}

.form-group label {
    position: absolute;
    top: 18px;
    left: 16px;
    font-size: 0.95rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition-normal);
}

/* Floating behavior */
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    background-color: var(--white);
    padding: 0 6px;
    border-radius: 4px;
}

/* Styled HTML Select (Requires slight adjustment) */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='none' stroke='%23475569' stroke-width='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    color: var(--text-muted);
}

.form-group select:focus, .form-group select:valid {
    color: var(--text-dark);
}

/* Form feedback alerts */
.form-feedback {
    margin-top: 16px;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    display: none;
}

.form-feedback.success {
    display: block;
    background-color: rgba(37, 211, 102, 0.15);
    color: #1a8e41;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.form-feedback.error {
    display: block;
    background-color: rgba(220, 38, 38, 0.1);
    color: #b91c1c;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

/* Styled Map */
.map-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.map-placeholder {
    background-color: var(--bg-neutral);
    padding: 60px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.map-icon {
    font-size: 3rem;
}

.map-placeholder h4 {
    font-size: 1.25rem;
}

.map-placeholder p {
    color: var(--text-muted);
    margin-bottom: 8px;
}

/* ==========================================================================
   FOOTER (RODAPÉ PREMIUM)
   ========================================================================== */
.footer {
    background-color: var(--primary-deep);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
}

.f-logo-img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--accent);
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background-color: var(--accent);
    color: var(--text-white);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.footer-links h4, .footer-contacts h4 {
    font-size: 1.15rem;
    color: var(--text-white);
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contacts p {
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
}

/* ==========================================================================
   FLOATING WHATSAPP WIDGET
   ========================================================================== */
.whatsapp-btn-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background-color: var(--whatsapp);
    color: var(--text-white);
    height: 64px;
    width: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    animation: pulse-ring 2s infinite;
    transition: var(--transition-normal);
}

.whatsapp-btn-float:hover {
    background-color: var(--whatsapp-hover);
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* ==========================================================================
   ANIMATIONS & REVEAL SYSTEM
   ========================================================================== */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Scroll reveal triggers */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Large Tablets & Small Desktops (max 1024px) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.75rem;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-visual {
        margin-top: 20px;
    }
    
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .sobre-media {
        display: flex;
        justify-content: center;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .segmentos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .differentials-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .diff-interactive {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
    
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Mobile Devices & Hambúrguer Transition (max 768px) */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        z-index: 1100;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--bg-dark);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        padding: 100px 40px 40px 40px;
        transition: var(--transition-normal);
        z-index: 1050;
        align-items: flex-start;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 24px;
        width: 100%;
        margin-bottom: 40px;
    }
    
    .nav-link {
        font-size: 1.15rem;
        color: rgba(255, 255, 255, 0.85);
        display: block;
        width: 100%;
    }
    
    .header-cta {
        display: none;
    }
    
    .header-cta-mobile {
        display: block;
        width: 100%;
    }
    
    .header.scrolled .logo-text {
        color: var(--text-white);
    }
    .logo-text {
        color: var(--primary);
    }

    /* Section resizing */
    .section-title {
        font-size: 2rem;
    }
    
    .hero {
        padding: 120px 0 60px 0;
    }
    .hero-title {
        font-size: 2.25rem;
    }
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    .hero-ctas .btn {
        width: 100%;
    }
    .hero-badges-wrapper {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    .floating-card.c1 {
        left: 0;
    }
    .floating-card.c2 {
        right: 0;
    }
    
    .sobre-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .whatsapp-btn-float {
        bottom: 20px;
        right: 20px;
        height: 52px;
        width: 52px;
    }
    
    .whatsapp-btn-float svg {
        width: 24px;
        height: 24px;
    }
}

/* Small Screen Adjustments (max 480px) */
@media (max-width: 480px) {
    .beneficios-grid, .segmentos-grid, .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contato-form-wrapper {
        padding: 24px;
    }
    
    .gallery-item {
        height: 220px;
    }
    
    .stats-card-main {
        position: relative;
        top: 0;
        left: 0;
        margin: 0 auto 24px auto;
        max-width: 100%;
    }
    .sobre-media {
        flex-direction: column;
    }
}
