/* ==========================================================================
   Design System & Variáveis (do DESIGN.md)
   ========================================================================== */
:root {
    /* Cores de Fundo e Superfície */
    --color-background: #0e0f10;
    --color-surface: #191c20;
    --color-surface-dim: #121516;
    --color-surface-bright: #393939;
    --color-surface-container-lowest: #0e0e0e;
    --color-surface-container-low: #1c1b1b;
    --color-surface-container: #201f1f;
    --color-surface-container-high: #2a2a2a;
    --color-surface-container-highest: #353534;

    /* Cores de Texto e Bordas */
    --color-on-surface: #e5e2e1;
    --color-on-surface-variant: #d0c6ab;
    --color-outline: #999077;
    --color-outline-variant: #4d4732;

    /* Cores de Destaque */
    --color-primary-yellow: #ffd700;
    --color-primary-amber: #e9c400;
    --color-secondary-green: #25d366;
    --color-secondary-hover: #1ebd52;
    --color-secondary-dark: #004d1f;

    /* Tipografia */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Bordas */
    --rounded-sm: 0.25rem;
    --rounded-default: 0.5rem;
    --rounded-md: 0.75rem;
    --rounded-lg: 1rem;
    --rounded-xl: 1.5rem;
    --rounded-full: 9999px;

    /* Layout & Espaçamento */
    --container-max: 1200px;
    --section-padding: 80px;
    --gutter: 24px;

    /* Animações e Transições */
    --transition-fast: 0.2s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

/* ==========================================================================
   Resets & Configurações Globais
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Compensa a altura do header fixo (80px) + margem de respiro */
}

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

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

ul {
    list-style: none;
}

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

/* Scrollbar Customizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-background);
}

::-webkit-scrollbar-thumb {
    background: var(--color-surface-bright);
    border-radius: var(--rounded-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-yellow);
}

/* ==========================================================================
   Componentes Utilitários & Globais
   ========================================================================== */
.text-green {
    color: var(--color-secondary-green);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(37, 211, 102, 0.1);
    color: var(--color-secondary-green);
    padding: 6px 14px;
    border-radius: var(--rounded-full);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(37, 211, 102, 0.2);
    margin-bottom: 24px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--section-padding);
}

.section-tag {
    display: inline-block;
    color: var(--color-primary-yellow);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 16px;
}

.section-subtitle {
    color: #a0a0a0;
    font-size: 16px;
}

/* ==========================================================================
   Botões e Ações
   ========================================================================== */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--color-secondary-green);
    color: #fff;
    font-weight: 600;
    border-radius: var(--rounded-default);
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
}

.icon-whatsapp-svg {
    flex-shrink: 0;
}

.btn-whatsapp:hover {
    background-color: var(--color-secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: transparent;
    border-radius: var(--rounded-default);
    transition: var(--transition-normal);
}

.btn-ghost:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: #fff;
    transform: translateY(-2px);
}

/* Efeito de Pulso */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.btn-pulse {
    animation: pulse 2s infinite;
}

/* Destaque para o botão da loja no Hero, mantendo sua estrutura translúcida */
#btn-hero-loja {
    border-color: rgba(255, 215, 0, 0.35);
    color: var(--color-primary-yellow);
}

#btn-hero-loja:hover {
    background-color: var(--color-primary-yellow);
    border-color: var(--color-primary-yellow);
    color: #131313;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.2);
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: #090a0a;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-normal);
}

.main-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: linear-gradient(90deg,
            rgba(37, 211, 102, 0) 0%,
            rgba(245, 121, 26, 0.4) 15%,
            rgba(255, 215, 0, 0.6) 50%,
            rgba(233, 196, 0, 0.4) 80%,
            rgba(233, 196, 0, 0) 100%);
}

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

.logo-link-img {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-normal);
}

.logo-link-img:hover .logo-img {
    transform: scale(1.03);
    filter: brightness(1.1);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #b3b3b3;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-primary-yellow);
}

.nav-link.highlight-store {
    color: var(--color-primary-yellow);
    font-weight: 600;
}

.nav-link.highlight-store:hover {
    color: var(--color-primary-amber);
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.nav-caret {
    font-size: 12px;
    transition: transform var(--transition-fast);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: rgba(19, 19, 19, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--rounded-md);
    padding: 10px 8px;
    min-width: 240px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.02);
    margin-top: 12px;
}

/* Área de segurança para não fechar o hover ao mover o mouse para o dropdown */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: #a0a0a0;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--rounded-default);
    transition: var(--transition-normal);
}

.dropdown-item i {
    font-size: 16px;
    color: #666;
    transition: color var(--transition-fast);
}

/* Hover e Estados do Dropdown */
.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown:hover .nav-caret,
.dropdown.active .nav-caret {
    transform: rotate(180deg);
    color: var(--color-primary-yellow);
}

.dropdown-item:hover {
    color: #fff;
    background-color: rgba(255, 215, 0, 0.06);
    transform: translateX(4px);
}

.dropdown-item:hover i {
    color: var(--color-primary-yellow);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
    background: radial-gradient(circle at center, #0b0c0c 0%, #090a0a 100%);
}

/* Efeito de Grade Tech */
.hero-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 40px 40px;
    background-image:
        linear-gradient(to right, rgba(32, 154, 202, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(17, 120, 168, 0.03) 1px, transparent 1px);
    pointer-events: none;
    z-index: 1;
}

.hero-grid-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(24, 118, 155, 0.068) 1px, transparent 1.5px);
    background-size: 40px 40px;
}

#plexus-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
}

/* Glow Canto Superior Esquerdo */
.hero-section::before {
    content: '';
    position: absolute;
    top: -15%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(29, 75, 110, 0.219) 0%, rgba(0, 122, 255, 0.04) 50%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

/* Glow Canto Inferior Direito */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -15%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 89, 131, 0.068) 0%, rgba(19, 97, 180, 0.22) 40%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: left;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 18px;
    color: #b3b3b3;
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 32px;
}

.stat-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background-color: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--rounded-md);
    padding: 16px 20px;
    transition: var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

.stat-card.premium {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 215, 0, 0.02) 100%);
    border: 1px solid rgba(255, 215, 0, 0.25);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.stat-card.premium:hover {
    border-color: var(--color-primary-yellow);
    box-shadow: 0 4px 25px rgba(255, 215, 0, 0.12);
    transform: translateY(-3px);
}

.stat-card.premium::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 45%,
            rgba(255, 215, 0, 0.15) 50%,
            transparent 55%);
    transform: rotate(45deg);
    transition: var(--transition-slow);
    pointer-events: none;
}

.stat-card.premium:hover::after {
    left: 100%;
    transition: all 0.8s ease-in-out;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary-yellow);
}

.stat-number.stat-text {
    font-size: 16px;
    line-height: 1.3;
}

.stat-label {
    font-size: 13px;
    color: #888;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 6s ease-in-out infinite;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.glow-effect {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(194, 196, 194, 0.15) 0%, transparent 65%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(-20px);
    filter: blur(50px);
    pointer-events: none;
    z-index: 1;
}

/* Animação Flutuante do Robô */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.hero-robot-img {
    width: 100%;
    max-width: 440px;
    height: auto;
    position: relative;
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), filter 0.3s ease;
    transform-style: preserve-3d;
    will-change: transform;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.45));
}

/* ==========================================================================
   Serviços Section
   ========================================================================== */
.services-section {
    padding: var(--section-padding) 0;
    position: relative;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--rounded-lg);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary-yellow), var(--color-primary-amber));
    opacity: 0;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-primary-yellow);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 215, 0, 0.08);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon-wrapper {
    font-size: 36px;
    color: var(--color-secondary-green);
    margin-bottom: 24px;
    display: inline-flex;
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.service-card-desc {
    font-size: 15px;
    color: #a0a0a0;
    margin-bottom: 28px;
    line-height: 1.5;
}

.service-list {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--color-on-surface);
}

.service-list li i {
    color: var(--color-secondary-green);
    font-size: 16px;
}

.btn-card-action {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    border-radius: var(--rounded-default);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-normal);
    margin-top: auto;
}

.service-card:hover .btn-card-action {
    background-color: var(--color-primary-yellow);
    color: #131313;
    border-color: var(--color-primary-yellow);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

/* ==========================================================================
   Business Section (Para Empresas)
   ========================================================================== */
.business-section {
    padding: var(--section-padding) 0;
    background-color: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.business-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.business-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-box {
    background-color: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--rounded-md);
    padding: 24px;
    transition: var(--transition-normal);
}

.feature-box:hover {
    border-color: rgba(37, 211, 102, 0.2);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 28px;
    color: var(--color-secondary-green);
    margin-bottom: 16px;
}

.feature-box h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.feature-box p {
    font-size: 13px;
    color: #888;
    line-height: 1.4;
}

.business-content {
    text-align: left;
}

.business-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin: 8px 0 16px;
    line-height: 1.2;
}

.business-desc {
    color: #a0a0a0;
    font-size: 16px;
    margin-bottom: 24px;
}

.business-check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.business-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #e5e2e1;
}

.business-check-list li i {
    color: var(--color-secondary-green);
    font-size: 18px;
}

/* ==========================================================================
   Sobre Nós & Valores Section
   ========================================================================== */
.about-section {
    padding: var(--section-padding) 0;
}

.about-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: flex-start;
}

.about-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin: 8px 0 20px;
    line-height: 1.2;
}

.about-text {
    font-size: 15px;
    color: #a0a0a0;
    margin-bottom: 20px;
}

.about-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.pill-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 8px 16px;
    border-radius: var(--rounded-full);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition-fast);
}

.pill-tag:hover {
    border-color: var(--color-primary-yellow);
    background-color: rgba(255, 215, 0, 0.03);
}

.pill-tag i {
    color: var(--color-primary-yellow);
}

.values-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    padding-left: 12px;
    border-left: 3px solid var(--color-primary-yellow);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.value-card {
    background-color: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--rounded-md);
    padding: 24px;
    transition: var(--transition-normal);
}

.value-card:hover {
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.value-icon {
    font-size: 24px;
    color: var(--color-primary-yellow);
    margin-bottom: 12px;
}

.value-card h5 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.value-card p {
    font-size: 13px;
    color: #888;
    line-height: 1.4;
}

/* ==========================================================================
   CTA Section (Contatos)
   ========================================================================== */
.cta-section {
    padding: 60px 0;
}

.cta-container {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.06) 0%, rgba(19, 19, 19, 0) 100%);
    border: 1px solid rgba(37, 211, 102, 0.15);
    border-radius: var(--rounded-xl);
    padding: 60px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.08) 0%, transparent 60%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.cta-subtitle {
    color: #a0a0a0;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 32px;
    position: relative;
    z-index: 2;
}

.cta-container .btn-whatsapp {
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   Location Section (Localização)
   ========================================================================== */
.location-section {
    padding: var(--section-padding) 0;
    background-color: var(--color-surface-dim);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.location-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.location-content {
    text-align: left;
}

.location-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin: 8px 0 16px;
    line-height: 1.2;
}

.location-desc {
    color: #a0a0a0;
    font-size: 16px;
    margin-bottom: 32px;
}

.location-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: var(--rounded-md);
    color: var(--color-primary-yellow);
    font-size: 20px;
    flex-shrink: 0;
    transition: var(--transition-normal);
}

.info-item:hover .info-icon {
    background-color: var(--color-primary-yellow);
    color: #131313;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.info-text h5 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-text p {
    font-size: 14px;
    color: #a0a0a0;
    line-height: 1.5;
}

.btn-location-route {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: var(--color-primary-yellow);
    color: #131313;
    font-weight: 600;
    border-radius: var(--rounded-default);
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-location-route:hover {
    background-color: var(--color-primary-amber);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.25);
}

.location-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

#btn-location-store {
    border-color: rgba(255, 215, 0, 0.35);
    color: var(--color-primary-yellow);
}

#btn-location-store:hover {
    background-color: rgba(255, 215, 0, 0.05);
    border-color: var(--color-primary-yellow);
    color: var(--color-primary-yellow);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.08);
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: var(--rounded-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: var(--transition-normal);
}

.map-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.6);
    pointer-events: none;
    z-index: 2;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) invert(0.9) contrast(1.2) opacity(0.8);
    transition: filter var(--transition-slow);
    position: relative;
    z-index: 1;
}

.map-wrapper:hover iframe {
    filter: grayscale(0) invert(0) contrast(1) opacity(1);
}

.map-wrapper:hover {
    border-color: var(--color-primary-yellow);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 215, 0, 0.05);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.main-footer {
    background-color: var(--color-surface-container-lowest);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 60px 0 0;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px 40px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-brand {
    max-width: 320px;
}

.footer-desc {
    font-size: 14px;
    color: #888;
    margin-top: 16px;
    line-height: 1.5;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.footer-col h6 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 13px;
    color: #888;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-primary-yellow);
}

.footer-links a.footer-link-highlight {
    color: var(--color-primary-yellow);
    font-weight: 600;
}

.footer-links a.footer-link-highlight:hover {
    color: var(--color-primary-amber);
}

.footer-links .non-link {
    font-size: 13px;
    color: #666;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 24px 0;
}

.footer-bottom-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copyright {
    font-size: 13px;
    color: #666;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--rounded-full);
    color: #ccc;
    font-size: 20px;
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    background-color: rgba(255, 215, 0, 0.1);
    border-color: var(--color-primary-yellow);
    color: var(--color-primary-yellow);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.15);
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: rgba(30, 30, 30, 0.95);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #fff;
    padding: 12px 24px;
    border-radius: var(--rounded-md);
    font-size: 14px;
    font-weight: 500;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.05);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-notification i {
    color: var(--color-primary-yellow);
    font-size: 18px;
}

/* ==========================================================================
   Responsividade (Mobile-First / Layout Breakpoints)
   ========================================================================== */

/* Tablet & Mobile (Max-Width: 1024px) */
@media (max-width: 1024px) {
    :root {
        --section-padding: 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: 38px;
    }

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

    .hero-stats {
        width: 100%;
        max-width: 500px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .business-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .business-content {
        order: -1;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .business-check-list {
        align-items: center;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .values-title {
        border-left: none;
        border-bottom: 2px solid var(--color-primary-yellow);
        padding-left: 0;
        padding-bottom: 8px;
        display: inline-block;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .footer-brand {
        max-width: 100%;
    }

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

    /* Localização Responsivo */
    .location-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .location-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .location-info-list {
        align-items: center;
        width: 100%;
        max-width: 500px;
    }

    .info-item {
        text-align: left;
        width: 100%;
    }

    .map-wrapper {
        height: 380px;
    }
}

/* Mobile Small (Max-Width: 768px) */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 60px;
    }

    .nav-menu {
        display: none;
        /* Em um sistema mais robusto faríamos menu hamburguer. Aqui, focaremos nos CTAs principais */
    }

    .header-container {
        justify-content: space-between;
        height: 60px;
        padding: 0 16px;
    }

    .logo-img {
        height: 30px;
    }

    #btn-header-whatsapp {
        padding: 6px 12px;
        font-size: 13px;
        gap: 6px;
    }

    .hero-section {
        padding: 110px 0 60px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-actions a {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

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

    .business-features-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 20px;
        width: 100%;
    }

    .footer-links-grid .footer-col:nth-child(1) {
        order: 1;
    }

    .footer-links-grid .footer-col:nth-child(3) {
        order: 2;
    }

    .footer-links-grid .footer-col:nth-child(2) {
        order: 3;
        grid-column: span 2;
        margin-top: 12px;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .map-wrapper {
        height: 300px;
    }
}