/* ==========================================================================
   RVG SOLUÇÕES INTEGRADAS - STYLESHEET
   Design System: Industrial Tech Dark Mode + Electric Gold (#FFB800) & Cyan
   ========================================================================== */

:root {
    --bg-dark: #070A0F;
    --bg-surface: #0E1420;
    --bg-card: rgba(18, 25, 38, 0.75);
    --bg-card-hover: rgba(26, 36, 54, 0.85);

    --gold-primary: #FFB800;
    --gold-hover: #FFA000;
    --gold-glow: rgba(255, 184, 0, 0.35);
    --gold-light: #FFE599;

    --cyan-accent: #00E5FF;
    --cyan-glow: rgba(0, 229, 255, 0.25);

    --text-main: #F0F4F8;
    --text-muted: #94A3B8;
    --text-dark: #070A0F;

    --border-color: rgba(255, 184, 0, 0.18);
    --border-highlight: rgba(255, 184, 0, 0.5);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-full: 9999px;

    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Canvas background for particles */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    opacity: 0.6;
}

/* Helper Utilities */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

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

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

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--border-highlight);
    box-shadow: 0 15px 35px rgba(255, 184, 0, 0.15);
    transform: translateY(-4px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.6rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-fast);
}

.btn-primary, .btn-gold {
    background: linear-gradient(135deg, var(--gold-primary) 0%, #FF9000 100%);
    color: #070A0F;
    box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-gold:hover, .btn-primary:hover {
    background: linear-gradient(135deg, #FFC72C 0%, var(--gold-primary) 100%);
    box-shadow: 0 6px 25px rgba(255, 184, 0, 0.6);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: rgba(255, 184, 0, 0.12);
    color: var(--gold-primary);
    box-shadow: 0 4px 15px var(--gold-glow);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

.flex-btn {
    flex: 1;
}

/* Top Emergency Bar */
.top-bar {
    background: rgba(14, 20, 32, 0.95);
    border-bottom: 1px solid rgba(255, 184, 0, 0.15);
    font-size: 0.85rem;
    padding: 0.4rem 0;
    color: var(--text-muted);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 1.5rem;
}

.top-info i {
    color: var(--gold-primary);
}

.top-contact {
    display: flex;
    gap: 1.5rem;
}

.top-contact a {
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition-fast);
}

.top-contact a:hover {
    color: var(--gold-primary);
}

.top-phone {
    font-weight: 700;
    color: var(--gold-primary) !important;
}

/* Main Navigation Header */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 10, 15, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 184, 0, 0.15);
    padding: 0.6rem 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* Transparent PNG Official Logo Styling */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 184, 0, 0.45));
    transition: var(--transition-fast);
}

.brand-logo:hover .brand-logo-img {
    transform: scale(1.06);
    filter: drop-shadow(0 0 16px var(--gold-primary));
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.rvg-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    line-height: 1;
    color: #FFF;
    letter-spacing: 1px;
}

.rvg-subtitle {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.6rem;
    letter-spacing: 1.5px;
    color: var(--gold-primary);
    margin-top: 2px;
}

/* Header Links Clean Layout */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.3rem 0;
    white-space: nowrap;
    position: relative;
    transition: var(--transition-fast);
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gold-primary);
    transition: var(--transition-fast);
}

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

.highlight-link {
    color: var(--gold-primary) !important;
    background: rgba(255, 184, 0, 0.12);
    padding: 0.3rem 0.7rem !important;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 184, 0, 0.35);
}

.header-actions {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
}

.header-cta-mail {
    padding: 0.6rem 1rem !important;
    font-size: 0.85rem !important;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--gold-primary);
    font-size: 1.8rem;
    cursor: pointer;
}

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

.nav-mobile-actions {
    display: none;
}

/* HERO BANNER FULLSCREEN (Perfeito no Desktop, adaptável no Mobile) */
.hero-fullscreen {
    position: relative;
    width: 100%;
    height: calc(160vh - 90px);
    min-height: 520px;
    max-height: 880px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--bg-dark);
}

.hero-banner-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-fullscreen-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 5%;
    z-index: 1;
}

.hero-fullscreen-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(7, 10, 15, 0.05) 0%, rgba(7, 10, 15, 0.0) 60%, rgba(7, 10, 15, 0.75) 100%);
    z-index: 2;
    pointer-events: none;
}

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

.hero-fullscreen-stats {
    position: relative;
    z-index: 3;
    background: rgba(7, 10, 15, 0.88);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 184, 0, 0.25);
    padding: 1rem 0;
    margin-top: auto;
}

.pill-text {
    font-size: 1.05rem;
    font-weight: 500;
}

.highlight-pill {
    background: rgba(255, 184, 0, 0.15);
    box-shadow: 0 0 20px var(--gold-glow);
}

/* Stats counter */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.7rem;
    color: var(--gold-primary);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.2;
    margin-top: 2px;
}

/* SECTION GLOBAL HEADINGS */
.section {
    padding: 4.8rem 0;
}

.section-title {
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.6rem;
}

.highlight-tag {
    background: rgba(255, 184, 0, 0.15);
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--gold-primary);
}

.section-title h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.1rem;
    line-height: 1.2;
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subtitle {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0.8rem auto 0 auto;
    font-size: 1.05rem;
}

.title-line {
    width: 70px;
    height: 4px;
    background: var(--gold-primary);
    margin: 1.2rem auto 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--gold-glow);
}

/* TIMELINE SECTION */
.timeline-section {
    background: rgba(10, 15, 25, 0.6);
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.timeline-card {
    padding: 2.2rem;
    position: relative;
}

.timeline-year {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2.2rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.today-badge {
    background: var(--gold-primary);
    color: #070A0F;
    display: inline-block;
    padding: 0.2rem 1rem;
    border-radius: var(--radius-sm);
}

.timeline-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold-primary);
    margin-bottom: 1.2rem;
    box-shadow: 0 0 10px var(--gold-glow);
}

.active-bullet {
    width: 16px;
    height: 16px;
    background: #FFF;
    border: 3px solid var(--gold-primary);
}

.timeline-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    color: #FFF;
}

.timeline-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.highlight-card {
    border-color: var(--gold-primary);
    background: rgba(255, 184, 0, 0.08);
}

.quote-banner {
    padding: 2rem 3rem;
    text-align: center;
    position: relative;
    border-left: 4px solid var(--gold-primary);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
    opacity: 0.4;
    margin-bottom: 0.5rem;
}

.quote-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--gold-light);
    font-weight: 600;
}

/* POR QUE SOLUÇÕES INTEGRADAS? */
.why-section {
    background: var(--bg-dark);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.why-content h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.why-paragraphs p {
    font-size: 1.05rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.why-highlight {
    font-weight: 700;
    color: #FFF !important;
    border-left: 3px solid var(--gold-primary);
    padding-left: 1rem;
}

.why-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.why-feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.why-feature-item i {
    font-size: 1.5rem;
    margin-top: 3px;
}

.why-feature-item h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #FFF;
}

.why-feature-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.why-images-showcase {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 1.5rem;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid rgba(255, 184, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.year-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(7, 10, 15, 0.85);
    color: var(--gold-primary);
    padding: 0.2rem 0.8rem;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 0.85rem;
    border: 1px solid var(--gold-primary);
}

/* ROPE ACCESS COMPARISON SECTION */
.rope-access-section {
    background: rgba(14, 20, 32, 0.7);
}

.comparison-wrapper {
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.comparison-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: #FFF;
    margin-bottom: 2rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.comp-col {
    padding: 1.8rem;
    border-radius: var(--radius-md);
}

.rvg-comp {
    background: rgba(255, 184, 0, 0.08);
    border: 2px solid var(--gold-primary);
}

.traditional-comp {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comp-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.comp-header i {
    font-size: 1.6rem;
}

.rvg-comp .comp-header i {
    color: var(--gold-primary);
}

.traditional-comp .comp-header i {
    color: #FF5252;
}

.comp-header h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #FFF;
}

.comp-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.comp-col li {
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.rvg-comp li i {
    color: var(--gold-primary);
    margin-top: 3px;
}

.traditional-comp li i {
    color: #FF5252;
    margin-top: 3px;
}

.operations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.op-card {
    padding: 2rem 1.5rem;
    text-align: center;
}

.op-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 184, 0, 0.12);
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem auto;
}

.op-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: #FFF;
    margin-bottom: 0.7rem;
}

.op-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* REORGANIZED SERVICES GRID & IMAGE PLACEHOLDERS */
.services-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-main);
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--gold-primary);
    color: #070A0F;
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px var(--gold-glow);
}

/* Grid Alinhado Perfeito */
.services-aligned-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Espaço Reservado para Imagem de Serviço */
.service-image-container {
    width: 100%;
    height: 160px;
    margin-bottom: 1.4rem;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.service-card:hover .service-image-container img {
    transform: scale(1.05);
}

/* ==========================================================================
   CARROSSEL / SLIDER MODERNO INTERATIVO E AUTOMÁTICO (ALTA DEFINIÇÃO)
   ========================================================================== */
.service-carousel {
    position: relative;
    width: 100%;
    height: 380px;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #06090E;
    border: 1px solid rgba(255, 184, 0, 0.32);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.65), 0 0 20px rgba(255, 184, 0, 0.08);
    touch-action: pan-y pinch-zoom;
    user-select: none;
    -webkit-user-select: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.service-carousel:hover {
    border-color: rgba(255, 184, 0, 0.7);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.75), 0 0 28px rgba(255, 184, 0, 0.2);
}

.carousel-track-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #06090E;
    overflow: hidden;
    cursor: zoom-in;
}

/* Fundo Ambiente Desfocado - Preenche as laterais sem cortar a imagem real */
.carousel-slide-backdrop {
    position: absolute;
    inset: -25px;
    background-size: cover;
    background-position: center;
    filter: blur(32px) brightness(0.25) saturate(1.45);
    transform: scale(1.22);
    pointer-events: none;
    z-index: 1;
    opacity: 0.95;
    transition: transform 0.6s ease;
}

.service-carousel:hover .carousel-slide-backdrop {
    transform: scale(1.26);
}

/* Imagem Principal Centralizada, com Proporção Preservada (Zero Cortes) */
.carousel-slide .carousel-img {
    position: relative;
    z-index: 2;
    width: auto;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.8));
    transition: transform 0.45s cubic-bezier(0.2, 0, 0.2, 1);
    pointer-events: auto;
}

.service-carousel:hover .carousel-slide .carousel-img {
    transform: scale(1.025);
}

/* Gradiente Inferior para destaque de legendas e controles */
.carousel-bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 110px;
    background: linear-gradient(to top, rgba(5, 8, 14, 0.96) 0%, rgba(5, 8, 14, 0.72) 48%, transparent 100%);
    pointer-events: none;
    z-index: 4;
}

/* Badge Superior Esquerdo: Foto Real */
.carousel-photo-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 6;
    background: rgba(7, 10, 15, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 184, 0, 0.4);
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.carousel-photo-badge i {
    color: var(--gold-primary);
    font-size: 0.75rem;
}

/* Legenda Descritiva da Foto Ativa */
.carousel-caption {
    position: absolute;
    bottom: 28px;
    left: 14px;
    right: 14px;
    z-index: 5;
    color: #FFFFFF;
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95);
    pointer-events: none;
    margin: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Dica de Zoom que surge suavemente ao passar o mouse */
.carousel-hover-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.92);
    z-index: 5;
    background: rgba(7, 10, 15, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 7px 15px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8), 0 0 15px var(--gold-glow);
    display: flex;
    align-items: center;
    gap: 7px;
}

.service-carousel:hover .carousel-hover-hint {
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(1);
}

/* Botões de Navegação Manual (< e >) */
.carousel-btn {
    position: absolute;
    top: 48%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(7, 10, 15, 0.86);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 184, 0, 0.45);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 6;
    transition: var(--transition-fast);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
    opacity: 0.88;
}

.carousel-prev {
    left: 12px;
}

.carousel-next {
    right: 12px;
}

.service-carousel:hover .carousel-btn {
    opacity: 1;
}

.carousel-btn:hover {
    background: var(--gold-primary);
    color: #070A0F;
    border-color: var(--gold-primary);
    box-shadow: 0 0 18px var(--gold-glow);
    transform: translateY(-50%) scale(1.12);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.94);
}

/* Controles Superiores: Contador, Zoom e Botão Play/Pausa */
.carousel-top-controls {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 7px;
    z-index: 6;
}

.carousel-counter {
    background: rgba(7, 10, 15, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 184, 0, 0.4);
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
}

.carousel-zoom-btn,
.carousel-play-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(7, 10, 15, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 184, 0, 0.4);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-zoom-btn:hover,
.carousel-play-toggle:hover {
    background: rgba(255, 184, 0, 0.3);
    border-color: var(--gold-primary);
    box-shadow: 0 0 12px var(--gold-glow);
    transform: scale(1.12);
}

.carousel-play-toggle.paused {
    color: #00E5FF;
    border-color: rgba(0, 229, 255, 0.6);
    background: rgba(0, 229, 255, 0.15);
}

/* Indicadores Dots Navegáveis */
.carousel-dots-container {
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    z-index: 6;
    pointer-events: auto;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
    padding: 0;
    outline: none;
}

.carousel-dot:hover {
    background: rgba(255, 184, 0, 0.8);
    border-color: var(--gold-primary);
}

.carousel-dot.active {
    width: 26px;
    border-radius: var(--radius-full);
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    box-shadow: 0 0 12px var(--gold-glow);
}

/* ==========================================================================
   LIGHTBOX MODAL - VISUALIZAÇÃO EM TELA CHEIA E ALTA RESOLUÇÃO
   ========================================================================== */
.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.2, 0, 0, 1), visibility 0.3s ease;
}

.image-lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 5, 8, 0.95);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.lightbox-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 95vw;
    max-width: 1200px;
    height: 92vh;
    padding: 1rem;
    outline: none;
}

.lightbox-close {
    position: absolute;
    top: 10px;
    right: 15px;
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(15, 20, 28, 0.85);
    border: 1px solid rgba(255, 184, 0, 0.5);
    color: var(--gold-primary);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.lightbox-close:hover {
    background: var(--gold-primary);
    color: #070A0F;
    box-shadow: 0 0 20px var(--gold-glow);
    transform: scale(1.1);
}

.lightbox-body {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex: 1;
    min-height: 0;
}

.lightbox-img-holder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(255, 184, 0, 0.12);
    border: 1px solid rgba(255, 184, 0, 0.2);
    transition: transform 0.25s ease;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(15, 20, 28, 0.85);
    border: 1px solid rgba(255, 184, 0, 0.5);
    color: var(--gold-primary);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 8;
    transition: var(--transition-fast);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}

.lightbox-prev {
    left: 10px;
}

.lightbox-next {
    right: 10px;
}

.lightbox-arrow:hover {
    background: var(--gold-primary);
    color: #070A0F;
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 0 20px var(--gold-glow);
}

.lightbox-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 900px;
    margin-top: 0.8rem;
    padding: 0.6rem 1.2rem;
    background: rgba(15, 20, 28, 0.85);
    border: 1px solid rgba(255, 184, 0, 0.25);
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.lightbox-info {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
}

.lightbox-badge {
    background: rgba(255, 184, 0, 0.18);
    border: 1px solid rgba(255, 184, 0, 0.4);
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.lightbox-caption {
    color: #FFFFFF;
    font-size: 0.88rem;
    font-weight: 500;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lightbox-counter {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 0.5px;
    white-space: nowrap;
    margin-left: 15px;
}

.service-img-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 184, 0, 0.05);
    border: 2px dashed rgba(255, 184, 0, 0.4);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    padding: 1rem;
    text-align: center;
    transition: var(--transition-fast);
}

.service-img-placeholder:hover {
    background: rgba(255, 184, 0, 0.1);
    border-color: var(--gold-primary);
}

.service-img-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.4rem;
}

.service-img-placeholder span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    color: #FFF;
}

.service-img-placeholder small {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.service-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    background: rgba(255, 184, 0, 0.15);
    color: var(--gold-primary);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-cat-badge {
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.08);
    color: var(--gold-primary);
    padding: 0.2rem 0.7rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 184, 0, 0.25);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #FFF;
    margin-bottom: 0.7rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.6rem;
    flex-grow: 1;
}

.service-list li {
    font-size: 0.88rem;
    color: var(--text-main);
}

.service-list li i {
    color: var(--gold-primary);
    margin-right: 4px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    margin-top: auto;
}

.service-link:hover {
    color: #FFF;
    transform: translateX(4px);
}

/* SIMULATOR SECTION */
.simulator-section {
    background: radial-gradient(circle at 50% 50%, rgba(255, 184, 0, 0.08) 0%, transparent 70%);
}

.simulator-wrapper {
    padding: 3rem;
}

.sim-header {
    margin-bottom: 2.2rem;
}

.sim-body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sim-step-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 1rem;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--gold-primary);
    color: #070A0F;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 800;
    margin-right: 0.6rem;
}

.sim-options-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
}

.sim-option-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1.1rem;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.sim-option-btn i {
    font-size: 1.7rem;
    color: var(--gold-primary);
}

.sim-option-btn span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
}

.sim-option-btn:hover, .sim-option-btn.active {
    border-color: var(--gold-primary);
    background: rgba(255, 184, 0, 0.15);
    box-shadow: 0 0 20px var(--gold-glow);
}

.sim-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.sim-check-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 0.9rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.sim-check-card input[type="checkbox"] {
    display: none;
}

.check-box {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold-primary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.sim-check-card input[type="checkbox"]:checked + .check-box {
    background: var(--gold-primary);
}

.sim-check-card input[type="checkbox"]:checked + .check-box::after {
    content: '✓';
    color: #070A0F;
    font-weight: 900;
    font-size: 0.8rem;
}

.check-title {
    font-size: 0.88rem;
    font-weight: 600;
}

.sim-result-box {
    margin-top: 1rem;
    background: rgba(7, 10, 15, 0.85);
    border: 2px solid var(--gold-primary);
    border-radius: var(--radius-md);
    padding: 1.6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.sim-action-buttons {
    display: flex;
    gap: 0.8rem;
}

.result-info h4 {
    color: var(--gold-primary);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.result-info p {
    font-size: 0.92rem;
    color: var(--text-main);
}

/* VISION & MISSION SECTION */
.vision-mission-section {
    background: rgba(5, 8, 14, 0.95);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.vm-huge-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 3.8rem;
    color: var(--gold-primary);
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.vm-card {
    padding: 2.2rem;
    border-left: 5px solid var(--gold-primary);
}

.vm-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #FFF;
    font-style: italic;
}

.compliance-badges-bar {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem;
    background: rgba(255, 184, 0, 0.06);
    border: 1px solid var(--border-color);
    padding: 1.6rem;
    border-radius: var(--radius-md);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #FFF;
    font-size: 0.92rem;
}

.badge-item i {
    font-size: 1.7rem;
    color: var(--gold-primary);
}

/* CONTACT SECTION - BALANCED CHANNELS & FORM */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
}

.contact-info-wrapper {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.contact-info-header {
    margin-bottom: 1.6rem;
}

.contact-info-tag {
    display: inline-block;
    color: var(--gold-primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.4rem;
}

.contact-info-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #FFF;
    margin-bottom: 0.5rem;
}

.contact-info-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.contact-channels-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 1.6rem;
}

.channel-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 184, 0, 0.2);
    border-radius: var(--radius-sm);
    padding: 0.9rem 1.2rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.channel-card:not(.static-channel):hover {
    background: rgba(255, 184, 0, 0.1);
    border-color: var(--gold-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

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

.channel-icon.wa {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.4);
}

.channel-icon.mail {
    background: rgba(255, 184, 0, 0.15);
    color: var(--gold-primary);
    border: 1px solid rgba(255, 184, 0, 0.4);
}

.channel-icon.insta {
    background: rgba(225, 48, 108, 0.15);
    color: #E1306C;
    border: 1px solid rgba(225, 48, 108, 0.4);
}

.channel-icon.loc {
    background: rgba(0, 229, 255, 0.15);
    color: var(--cyan-accent);
    border: 1px solid rgba(0, 229, 255, 0.4);
}

.channel-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.channel-title {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.channel-value {
    font-size: 0.95rem;
    color: #FFF;
    font-weight: 700;
    font-family: var(--font-body);
}

.channel-arrow {
    font-size: 0.85rem;
    color: var(--gold-primary);
    opacity: 0.6;
    transition: var(--transition-fast);
}

.channel-card:hover .channel-arrow {
    opacity: 1;
    transform: translate(2px, -2px);
}

.contact-info-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Contact Form Options */
.contact-form-wrapper {
    padding: 2.5rem;
}

.contact-form-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: #FFF;
    margin-bottom: 1.6rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

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

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

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.4rem;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(7, 10, 15, 0.8);
    border: 1px solid rgba(255, 184, 0, 0.25);
    border-radius: var(--radius-sm);
    color: #FFF;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px var(--gold-glow);
}

.form-submit-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

/* FOOTER com Logo Transparente */
.footer {
    background: #030508;
    border-top: 1px solid rgba(255, 184, 0, 0.15);
    padding: 4rem 0 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.footer-logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    clip-path: circle(49.5% at 50% 50%);
    filter: drop-shadow(0 0 8px var(--gold-primary));
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-slogan {
    font-style: italic;
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #FFF;
    margin-bottom: 1.2rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-col a:hover {
    color: var(--gold-primary);
}

.contact-col p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.contact-col i {
    color: var(--gold-primary);
}

.footer-wa-link {
    color: #25D366 !important;
    font-weight: 700;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.legal-text {
    color: var(--gold-primary);
    font-weight: 600;
}

/* Floating WhatsApp Button */
.float-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 62px;
    height: 62px;
    background: #25D366;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.float-tooltip {
    position: absolute;
    right: 74px;
    background: rgba(7, 10, 15, 0.95);
    color: #FFF;
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid var(--gold-primary);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
}

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

/* RESPONSIVE MEDIA QUERIES */
/* Lock scroll when mobile menu is open */
body.menu-open {
    overflow: hidden !important;
}

/* RESPONSIVE MEDIA QUERIES */

/* Tablets (landscape / portrait) */
@media (max-width: 1024px) {
    .contact-grid, .vm-grid {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }

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

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

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

    .hero-fullscreen {
        height: 60vh;
        min-height: 480px;
    }
}

/* Mobile Devices (Smartphones & Small Tablets <= 768px) */
@media (max-width: 768px) {
    /* 1. Global Spacing & Layout */
    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 3rem 0;
    }

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

    .section-title h2 {
        font-size: 1.55rem;
        line-height: 1.3;
        letter-spacing: 0.5px;
    }

    .section-title .subtitle {
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }

    .section-tag {
        font-size: 0.78rem;
        margin-bottom: 0.4rem;
    }

    /* 2. Header & Mobile Navigation */
    .top-bar {
        display: none;
    }

    .main-header {
        padding: 0.5rem 0;
    }

    .header-container {
        gap: 0.6rem;
    }

    .brand-logo {
        gap: 0.6rem;
    }

    .brand-logo-img {
        width: 38px;
        height: 38px;
    }

    .rvg-title {
        font-size: 1.25rem;
    }

    .rvg-subtitle {
        font-size: 0.52rem;
        letter-spacing: 1px;
    }

    .header-actions {
        display: none;
    }

    .mobile-header-actions {
        display: flex;
        align-items: center;
        gap: 0.6rem;
    }

    .mobile-header-wa {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        background: #25D366;
        color: #FFF;
        border-radius: 50%;
        font-size: 1.25rem;
        text-decoration: none;
        box-shadow: 0 0 12px rgba(37, 211, 102, 0.45);
        transition: var(--transition-fast);
    }

    .mobile-header-wa:active {
        transform: scale(0.92);
    }

    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        padding: 0;
        font-size: 1.5rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-sm);
        color: var(--gold-primary);
    }

    .nav-menu {
        position: fixed;
        top: 56px;
        left: 0;
        width: 100%;
        height: calc(100dvh - 56px);
        background: rgba(7, 10, 15, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        padding: 1.5rem 1.2rem 2.5rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 9999;
        border-top: 1px solid rgba(255, 184, 0, 0.25);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        width: 100%;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-link {
        display: block;
        padding: 0.85rem 0.4rem;
        font-size: 1.05rem;
        width: 100%;
    }

    .nav-mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        padding-top: 1.5rem;
        margin-top: 1rem;
        border-top: 1px solid rgba(255, 184, 0, 0.2);
    }

    .nav-mob-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
        padding: 0.85rem 1rem;
        font-size: 0.92rem;
        font-weight: 700;
        border-radius: var(--radius-sm);
        text-decoration: none;
        width: 100%;
    }

    /* 3. HERO FULLSCREEN ADJUSTMENTS - SEM CORTES NA HOME */
    .hero-fullscreen {
        position: relative;
        width: 100%;
        height: auto;
        min-height: auto;
        max-height: none;
        display: flex;
        flex-direction: column;
        overflow: visible;
        background: var(--bg-dark);
    }

    .hero-banner-container {
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 9;
        overflow: hidden;
        background: #070A0F;
    }

    .hero-fullscreen-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        display: block;
        background: #070A0F;
    }

    .hero-fullscreen-overlay {
        display: none;
    }

    .hero-mobile-cta {
        display: block;
        padding: 0.85rem 0;
        background: rgba(14, 20, 32, 0.95);
        border-bottom: 1px solid rgba(255, 184, 0, 0.15);
    }

    .hero-mobile-btn-group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
    }

    .btn-hero-mob, .btn-hero-mob-sec {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        padding: 0.8rem 0.6rem;
        font-size: 0.85rem;
        font-weight: 700;
        border-radius: var(--radius-sm);
        text-align: center;
        white-space: nowrap;
    }

    .btn-hero-mob {
        box-shadow: 0 4px 15px rgba(255, 184, 0, 0.25);
    }

    .hero-fullscreen-stats {
        position: relative;
        margin-top: 0;
        background: rgba(7, 10, 15, 0.95);
        border-top: none;
        border-bottom: 1px solid rgba(255, 184, 0, 0.2);
        padding: 1rem 0;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding-top: 0;
        border-top: none;
    }

    .stat-item {
        padding: 0.7rem 0.4rem;
        background: rgba(255, 255, 255, 0.03);
        border-radius: var(--radius-sm);
        border: 1px solid rgba(255, 184, 0, 0.15);
    }

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

    .stat-label {
        font-size: 0.72rem;
        margin-top: 3px;
    }

    /* 4. Timeline / História */
    .timeline-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin-bottom: 1.8rem;
    }

    .timeline-card {
        padding: 1.3rem;
    }

    .timeline-year {
        font-size: 1.7rem;
        margin-bottom: 0.6rem;
    }

    .timeline-card h3 {
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
    }

    .timeline-card p {
        font-size: 0.88rem;
    }

    .quote-banner {
        padding: 1.25rem 1rem;
        border-left-width: 3px;
    }

    .quote-icon {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }

    .quote-text {
        font-size: 0.92rem;
        line-height: 1.5;
    }

    /* 5. Visão & Missão */
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .vm-huge-title {
        font-size: 1.75rem;
        letter-spacing: 1px;
        margin-bottom: 0.6rem;
    }

    .vm-card {
        padding: 1.25rem;
        border-left-width: 4px;
    }

    .vm-quote {
        font-size: 0.92rem;
        line-height: 1.55;
    }

    .compliance-badges-bar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
        padding: 1rem 0.8rem;
    }

    .badge-item {
        font-size: 0.8rem;
        gap: 0.5rem;
        background: rgba(255, 255, 255, 0.02);
        padding: 0.5rem 0.4rem;
        border-radius: var(--radius-sm);
    }

    .badge-item:last-child {
        grid-column: 1 / -1;
        justify-content: center;
    }

    .badge-item i {
        font-size: 1.25rem;
    }

    /* 6. Serviços & Category Chips */
    .services-filter {
        display: flex;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 0.5rem;
        padding: 0.2rem 0.2rem 0.8rem;
        margin-bottom: 1.6rem;
        scrollbar-width: none;
    }

    .services-filter::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        white-space: nowrap;
        padding: 0.5rem 1rem;
        font-size: 0.82rem;
        flex-shrink: 0;
    }

    .services-aligned-grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .service-card {
        padding: 1.25rem;
    }

    .service-image-container {
        height: 320px;
        margin-bottom: 1.2rem;
    }

    .service-carousel {
        height: 320px;
        margin-bottom: 1.2rem;
    }

    .carousel-btn {
        width: 38px;
        height: 38px;
        font-size: 0.92rem;
        opacity: 1;
    }

    .carousel-prev {
        left: 8px;
    }

    .carousel-next {
        right: 8px;
    }

    .carousel-caption {
        font-size: 0.78rem;
        bottom: 25px;
        left: 10px;
        right: 10px;
    }

    .carousel-hover-hint {
        display: none;
    }

    .carousel-placeholder i {
        font-size: 1.8rem;
    }

    .carousel-placeholder span {
        font-size: 0.88rem;
    }

    .carousel-placeholder small {
        font-size: 0.72rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.88rem;
    }

    .service-list {
        margin: 1rem 0;
        gap: 0.5rem;
    }

    .service-list li {
        font-size: 0.84rem;
        line-height: 1.45;
    }

    .service-link {
        font-size: 0.88rem;
        padding: 0.6rem 0 0;
    }

    /* 7. Simulador / Proposta Técnica */
    .simulator-wrapper {
        padding: 1.25rem 1rem;
    }

    .sim-header {
        margin-bottom: 1.5rem;
    }

    .sim-header h2 {
        font-size: 1.35rem;
    }

    .sim-header p {
        font-size: 0.86rem;
    }

    .sim-step-label {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
        line-height: 1.35;
    }

    .step-num {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }

    .sim-options-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .sim-options-grid .sim-option-btn:last-child {
        grid-column: 1 / -1;
    }

    .sim-option-btn {
        padding: 0.75rem 0.5rem;
        border-radius: var(--radius-sm);
        gap: 0.4rem;
    }

    .sim-option-btn i {
        font-size: 1.3rem;
    }

    .sim-option-btn span {
        font-size: 0.82rem;
        text-align: center;
    }

    .sim-checkbox-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .sim-check-card {
        padding: 0.75rem 0.8rem;
    }

    .check-title {
        font-size: 0.82rem;
    }

    .sim-result-box {
        padding: 1.1rem;
        gap: 1rem;
        flex-direction: column;
        align-items: stretch;
    }

    .result-info h4 {
        font-size: 0.95rem;
    }

    .result-info p {
        font-size: 0.84rem;
        line-height: 1.4;
    }

    .sim-action-buttons {
        flex-direction: column;
        gap: 0.6rem;
        width: 100%;
    }

    .sim-action-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1rem;
        font-size: 0.88rem;
    }

    /* 8. Contato */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .contact-info-wrapper {
        padding: 1.25rem 1rem;
    }

    .contact-info-header h3 {
        font-size: 1.3rem;
    }

    .contact-info-desc {
        font-size: 0.86rem;
    }

    .contact-channels-list {
        gap: 0.7rem;
        margin-bottom: 1.2rem;
    }

    .channel-card {
        padding: 0.75rem 0.85rem;
        gap: 0.75rem;
    }

    .channel-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        border-radius: var(--radius-sm);
    }

    .channel-title {
        font-size: 0.74rem;
    }

    .channel-value {
        font-size: 0.85rem;
    }

    .contact-info-footer {
        padding-top: 1rem;
        font-size: 0.82rem;
    }

    .contact-form-wrapper {
        padding: 1.25rem 1rem;
    }

    .contact-form-wrapper h3 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }

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

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

    .form-group label {
        font-size: 0.84rem;
        margin-bottom: 0.35rem;
    }

    .form-group input, .form-group select, .form-group textarea {
        font-size: 16px; /* Previne zoom forçado no iOS */
        padding: 0.75rem 0.85rem;
    }

    .form-submit-buttons {
        flex-direction: column;
        gap: 0.6rem;
    }

    .form-submit-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
    }

    /* 9. Footer */
    .footer {
        padding: 2.5rem 0 1.5rem;
    }

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

    .footer-col h4 {
        font-size: 1.05rem;
        margin-bottom: 0.8rem;
    }

    .footer-col ul {
        gap: 0.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.6rem;
        text-align: center;
        font-size: 0.8rem;
        padding-top: 1.2rem;
    }

    /* 10. Botão Flutuante WhatsApp */
    .float-whatsapp {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
        font-size: 1.7rem;
    }

    .float-tooltip {
        display: none;
    }
}

/* Telas Ultra-Estreitas (Smartphones <= 420px) */
@media (max-width: 420px) {
    .hero-mobile-btn-group {
        grid-template-columns: 1fr;
    }

    .brand-logo-img {
        width: 34px;
        height: 34px;
    }

    .rvg-title {
        font-size: 1.15rem;
    }

    .rvg-subtitle {
        font-size: 0.48rem;
    }

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

    .stat-label {
        font-size: 0.68rem;
    }

    .service-carousel {
        height: 280px;
    }
}
