/* components.css - Premium UI Components */

/* --- BOTÕES PREMIUM COM CANTOS TOTALMENTE ARREDONDADOS (PILULA) --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    font-size: 0.88rem;
    font-weight: 700;
    font-family: var(--font-primary);
    border-radius: var(--border-radius-full); /* Garantia de cantos arredondados padrão pílula */
    cursor: pointer;
    transition: var(--transition-normal);
    gap: 12px;
    border: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #00cca3 100%);
    color: var(--color-dark);
    box-shadow: 0 4px 15px rgba(1, 255, 205, 0.25);
}

.btn-primary:hover {
    background: var(--color-white);
    color: var(--color-dark);
    box-shadow: var(--glow-primary);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-color);
    border: 1.5px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 0 20px rgba(1, 255, 205, 0.1);
    transform: translateY(-2px);
}

/* --- BOTÃO CROMÁTICO METAL-FX ARREDONDADO COM ANIMAÇÃO DE SHINE DE LUZ --- */
.btn-metal-chromatic {
    background: 
        linear-gradient(135deg, #121212 0%, #252528 25%, #18181a 50%, #2d2d30 75%, #121212 100%) padding-box,
        linear-gradient(90deg, rgba(1, 255, 205, 0.4), rgba(0, 240, 255, 0.4), rgba(255, 255, 255, 0.2), rgba(1, 255, 205, 0.4)) border-box;
    border: 2px solid transparent;
    border-radius: var(--border-radius-full); 
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 0 10px rgba(255, 255, 255, 0.02);
    position: relative;
    z-index: 1;
    font-family: var(--font-primary);
    font-weight: 800;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes chromaticShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-metal-chromatic::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0) 10%,
        rgba(255, 255, 255, 0.4) 40%, 
        rgba(1, 255, 205, 0.6) 50%, 
        rgba(255, 255, 255, 0.4) 60%, 
        rgba(255, 255, 255, 0) 90%,
        transparent 100%
    );
    transform: skewX(-30deg);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes metallicShine {
    0% { left: -150%; }
    100% { left: 180%; }
}

.btn-metal-chromatic:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 0 25px rgba(1, 255, 205, 0.45), 0 0 10px rgba(0, 255, 255, 0.2);
    background: 
        linear-gradient(135deg, #18181b 0%, #2e2e32 25%, #1e1e21 50%, #3a3a40 75%, #18181b 100%) padding-box,
        linear-gradient(90deg, #01ffcd, #00f0ff, #ffffff, #00cca3, #01ffcd) border-box;
    animation: chromaticShift 3s linear infinite;
}

.btn-metal-chromatic:hover::before {
    opacity: 1;
    animation: metallicShine 1.8s infinite linear; 
}

/* --- SELETOR DE TEMA CLARO/ESCURO (SLIDING THEME SWITCHER) --- */
.theme-switch-container {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    padding: 4px;
    border-radius: var(--border-radius-full);
    cursor: pointer;
    width: 62px;
    height: 32px;
    position: relative;
    user-select: none;
    transition: background-color var(--transition-normal);
}

.theme-switch-handle {
    width: 22px;
    height: 22px;
    background: var(--color-primary);
    border-radius: var(--border-radius-full);
    position: absolute;
    top: 4px;
    left: 4px;
    transition: left var(--transition-normal) cubic-bezier(0.4, 0, 0.2, 1), background-color var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
    color: var(--color-dark);
}

.theme-switch-handle svg {
    width: 13px;
    height: 13px;
}

/* Ícones dinâmicos Sol/Lua baseados no tema */
.theme-switch-handle .icon-sun {
    display: none;
}

.theme-switch-handle .icon-moon {
    display: block;
}

body.light-theme .theme-switch-handle {
    left: 34px;
    background: var(--color-dark);
    color: var(--color-primary);
}

body.light-theme .theme-switch-handle .icon-sun {
    display: block;
}

body.light-theme .theme-switch-handle .icon-moon {
    display: none;
}

body.light-theme .theme-switch-container {
    background: rgba(41, 40, 41, 0.05);
}

/* --- NAVBAR DE VIDRO TRANSPARENTE --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    background: rgba(18, 18, 18, 0.45);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    transition: var(--transition-normal);
}

body.light-theme .navbar {
    background: rgba(255, 255, 255, 0.65);
    border-bottom: 1px solid rgba(41, 40, 41, 0.05);
}

.navbar.scrolled {
    padding: 14px 0;
    background: rgba(18, 18, 18, 0.88);
    border-bottom: 1px solid rgba(1, 255, 205, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

body.light-theme .navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(1, 255, 205, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

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

.logo-link img {
    transition: var(--transition-normal);
    filter: var(--logo-filter);
}

.logo-link:hover img {
    transform: scale(1.02);
}

.nav-menu {
    display: none;
    list-style: none;
    align-items: center;
    gap: var(--spacing-md);
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }
}

.nav-item a {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-color-muted);
    position: relative;
    padding: 8px 0;
}

.nav-item a:hover,
.nav-item.active a {
    color: var(--color-primary);
}

body.light-theme .nav-item.active a {
    color: #00b38f;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    box-shadow: var(--glow-primary);
    transition: var(--transition-normal);
}

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

.nav-cta {
    display: none;
}

@media (min-width: 1024px) {
    .nav-cta {
        display: inline-flex;
        align-items: center;
        gap: 15px;
    }
}

/* MENU MOBILE */
.mobile-toggle {
    display: block;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.6rem;
    z-index: 1100;
}

@media (min-width: 1024px) {
    .mobile-toggle {
        display: none;
    }
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--bg-color);
    backdrop-filter: blur(30px);
    border-left: 1px solid var(--border-color);
    padding: 100px var(--spacing-md) var(--spacing-md) var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    transition: var(--transition-normal);
    z-index: 999;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu .nav-item {
    list-style: none;
}

.mobile-menu .nav-item a {
    font-size: 1.1rem;
    display: block;
    padding: 12px 0;
}

/* --- CARDS DE VIDRO ADAPTATIVOS (GLASSMORPHISM) --- */
.card-premium {
    background: var(--card-bg-color);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1.5px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(1, 255, 205, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: -1;
}

.card-premium:hover {
    transform: translateY(-8px);
    border-color: rgba(1, 255, 205, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35), 0 0 20px rgba(1, 255, 205, 0.08);
}

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

.card-icon {
    width: 55px;
    height: 55px;
    background: rgba(1, 255, 205, 0.04);
    border: 1px solid rgba(1, 255, 205, 0.15);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.4rem;
    margin-bottom: var(--spacing-md);
    transition: var(--transition-normal);
}

.card-premium:hover .card-icon {
    background: rgba(1, 255, 205, 0.15);
    color: var(--color-dark);
    border-color: var(--color-primary);
    box-shadow: var(--glow-primary);
}

body.light-theme .card-premium:hover .card-icon {
    color: #ffffff;
    background: var(--color-dark);
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
    font-family: var(--font-secondary);
    font-weight: 700;
}

.card-description {
    font-size: 0.92rem;
    color: var(--text-color-muted);
    line-height: 1.6;
}

/* --- CATÁLOGO DE PRODUTOS ADAPTATIVO --- */
.product-card {
    background: var(--card-bg-color);
    backdrop-filter: blur(12px);
    border: 1.5px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(1, 255, 205, 0.45);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4), 0 0 25px rgba(1, 255, 205, 0.08);
}

/* --- CARD DESTAQUE ULTRA-PREMIUM DA LINHA PALM (DARK & LIGHT MODE CONTRAST PERFECT) --- */
.product-card.palm-featured-card {
    border: 2px solid var(--color-primary) !important;
    background: linear-gradient(145deg, rgba(1, 255, 205, 0.12), rgba(18, 18, 18, 0.95)) !important;
    box-shadow: 0 0 30px rgba(1, 255, 205, 0.35) !important;
    transform: scale(1.02);
}
.product-card.palm-featured-card .product-badge.palm-badge-featured {
    background: linear-gradient(90deg, #01ffcd, #00cca3) !important;
    color: #000000 !important;
    font-weight: 900 !important;
    box-shadow: 0 0 20px rgba(1, 255, 205, 0.7) !important;
    letter-spacing: 1px !important;
    padding: 6px 14px !important;
    font-size: 0.78rem !important;
}
.product-card.palm-featured-card .product-tag {
    color: var(--color-primary) !important;
    font-weight: 800 !important;
}
.product-card.palm-featured-card .product-name {
    color: var(--color-primary) !important;
    font-weight: 900 !important;
    font-size: 1.4rem !important;
    text-shadow: 0 0 10px rgba(1, 255, 205, 0.3);
}

/* ESTILOS LIGHT MODE EXCLUSIVOS COM 100% CONTRASTE E LEGIBILIDADE PERFEITA */
body.light-theme .product-card.palm-featured-card {
    border: 2.5px solid #00876c !important;
    background: linear-gradient(145deg, #ffffff 0%, #f0fdf9 100%) !important;
    box-shadow: 0 12px 35px rgba(0, 179, 143, 0.25) !important;
    transform: scale(1.02);
}
body.light-theme .product-card.palm-featured-card .product-image-wrapper {
    background: radial-gradient(circle, #ffffff 0%, #e6f7f3 100%) !important;
    border-bottom: 1.5px solid #ccf2e9 !important;
}
body.light-theme .product-card.palm-featured-card .product-badge.palm-badge-featured {
    background: linear-gradient(90deg, #00876c, #005c4b) !important;
    color: #ffffff !important;
    font-weight: 900 !important;
    box-shadow: 0 4px 14px rgba(0, 135, 108, 0.35) !important;
}
body.light-theme .product-card.palm-featured-card .product-tag {
    color: #00876c !important;
    font-weight: 900 !important;
}
body.light-theme .product-card.palm-featured-card .product-name {
    color: #0f172a !important;
    font-weight: 900 !important;
    font-size: 1.4rem !important;
}
body.light-theme .product-card.palm-featured-card .product-desc {
    color: #334155 !important;
    font-weight: 600 !important;
}
body.light-theme .product-card.palm-featured-card .product-meta {
    border-top: 1.5px solid #cbd5e1 !important;
}
body.light-theme .product-card.palm-featured-card .meta-item {
    color: #1e293b !important;
    font-weight: 700 !important;
}
body.light-theme .product-card.palm-featured-card .meta-item svg {
    color: #00876c !important;
}
body.light-theme .product-card.palm-featured-card .btn-view-details {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
    color: #ffffff !important;
    border: none !important;
    font-weight: 800 !important;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.25) !important;
}
body.light-theme .product-card.palm-featured-card .btn-view-details:hover {
    background: linear-gradient(135deg, #00876c 0%, #005c4b 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(0, 135, 108, 0.4) !important;
}

.product-image-wrapper {
    position: relative;
    padding: var(--spacing-md);
    background: radial-gradient(circle, #222222 0%, #121212 100%);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1.5px solid var(--border-color);
}

body.light-theme .product-image-wrapper {
    background: radial-gradient(circle, #ffffff 0%, #eaeaea 100%);
}

.product-image {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: var(--transition-slow);
}

.product-card:hover .product-image {
    transform: scale(1.06) translateY(-4px);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-primary);
    color: var(--color-dark);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: var(--border-radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--glow-primary);
}

.product-info {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-primary);
    margin-bottom: 6px;
    font-weight: 700;
}

body.light-theme .product-tag {
    color: #00b38f;
}

.product-name {
    font-size: 1.45rem;
    margin-bottom: var(--spacing-xs);
    font-family: var(--font-secondary);
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-color-muted);
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
    flex-grow: 1;
}

.product-meta {
    display: flex;
    gap: 15px;
    border-top: 1.5px solid var(--border-color);
    padding-top: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-color-muted);
}

.meta-item svg {
    width: 14px;
    height: 14px;
    color: var(--color-primary);
}

body.light-theme .meta-item svg {
    color: #00b38f;
}

/* --- ABAS FILTRADORAS --- */
.tab-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1.5px solid var(--border-color);
    color: var(--text-color);
    padding: 12px 24px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.82rem;
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
}

body.light-theme .tab-btn {
    background: rgba(41, 40, 41, 0.02);
    border: 1.5px solid rgba(41, 40, 41, 0.08);
}

.tab-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(1, 255, 205, 0.02);
}

.tab-btn.active {
    background: rgba(1, 255, 205, 0.05);
    color: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(1, 255, 205, 0.08);
    text-shadow: 0 0 8px rgba(1, 255, 205, 0.3);
}

body.light-theme .tab-btn.active {
    background: rgba(0, 179, 143, 0.06);
    color: #00b38f;
    border-color: #00b38f;
    box-shadow: none;
    text-shadow: none;
}

/* --- WIDGET SELETOR INTERATIVO B2B --- */
.interactive-selector-container {
    background: var(--card-bg-color);
    backdrop-filter: blur(20px);
    border: 1.5px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
    .interactive-selector-container {
        padding: var(--spacing-lg);
    }
}

.selector-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

@media (min-width: 1024px) {
    .selector-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: var(--spacing-lg);
    }
}

.selector-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: var(--spacing-md);
}

.selector-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid var(--border-color);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

body.light-theme .selector-btn {
    background: rgba(41, 40, 41, 0.02);
}

.selector-btn:hover {
    border-color: rgba(1, 255, 205, 0.4);
}

.selector-btn.active {
    background: rgba(1, 255, 205, 0.1);
    color: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(1, 255, 205, 0.15);
}

body.light-theme .selector-btn.active {
    background: var(--color-dark);
    color: var(--color-white);
    border-color: var(--color-dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* --- MODAL DE DETALHES --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
    padding: var(--spacing-sm);
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

body.light-theme .modal-overlay {
    background: rgba(255, 255, 255, 0.9);
}

.modal-content {
    background: var(--bg-color-alt);
    border: 1.5px solid var(--border-color);
    width: 100%;
    max-width: 950px;
    max-height: 90vh;
    border-radius: var(--border-radius-lg);
    overflow-y: auto;
    position: relative;
    transform: translateY(40px);
    transition: transform var(--transition-normal), background-color var(--transition-normal);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.6), var(--glow-primary);
}

body.light-theme .modal-content {
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    width: 42px;
    height: 42px;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.4rem;
    transition: var(--transition-fast);
    z-index: 10;
}

.modal-close:hover {
    background: var(--color-primary);
    color: var(--color-dark);
    box-shadow: var(--glow-primary);
    border-color: var(--color-primary);
}

body.light-theme .modal-close:hover {
    background: var(--color-dark);
    color: var(--color-white);
    border-color: var(--color-dark);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .modal-grid {
        grid-template-columns: 4.5fr 5.5fr;
    }
}

.modal-left {
    background: radial-gradient(circle, #222222 0%, #101010 100%);
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

body.light-theme .modal-left {
    background: radial-gradient(circle, #ffffff 0%, #f4f4f4 100%);
}

.modal-right {
    padding: var(--spacing-md);
}

@media (min-width: 768px) {
    .modal-right {
        padding: var(--spacing-lg);
    }
}

.modal-title-tag {
    font-size: 0.8rem;
    color: var(--color-primary);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

body.light-theme .modal-title-tag {
    color: #00b38f;
}

.modal-title {
    font-size: 2.3rem;
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-secondary);
}

.modal-desc {
    font-size: 0.95rem;
    color: var(--text-color-muted);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.modal-specs-title {
    font-size: 1.15rem;
    margin-bottom: var(--spacing-sm);
    border-bottom: 1.5px solid var(--border-color);
    padding-bottom: 8px;
    font-family: var(--font-secondary);
    font-weight: 700;
}

.modal-specs-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: var(--spacing-md);
}

.spec-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    padding: 6px 0;
    border-bottom: 1.5px dashed var(--border-color);
}

.spec-label {
    color: var(--text-color-muted);
}

.spec-val {
    color: var(--text-color);
    font-weight: 600;
    text-align: right;
}

/* --- STATS COUNTERS --- */
.stat-card {
    text-align: center;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1.5px solid var(--border-color);
    border-radius: var(--border-radius-md);
    transition: var(--transition-normal);
}

body.light-theme .stat-card {
    background: rgba(41, 40, 41, 0.02);
}

.stat-card:hover {
    border-color: rgba(1, 255, 205, 0.25);
    transform: translateY(-4px);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--color-primary);
    text-shadow: var(--glow-primary);
    font-family: var(--font-secondary);
    margin-bottom: 5px;
}

body.light-theme .stat-number {
    color: #00b38f;
    text-shadow: none;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 5px;
}

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

/* --- FORMULÁRIOS PREMIUM --- */
.contact-form {
    background: var(--card-bg-color);
    backdrop-filter: blur(20px);
    border: 1.5px solid var(--border-color);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
    .contact-form {
        padding: var(--spacing-lg);
    }
}

.form-group {
    position: relative;
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    font-size: 0.82rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-color-muted);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid var(--border-color);
    color: var(--text-color);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    padding: 14px 18px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-normal);
}

body.light-theme .form-control {
    background: rgba(41, 40, 41, 0.02);
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(1, 255, 205, 0.15);
}

/* --- ANIMAÇÕES E EFEITO PARALLAX DE ROLAGEM --- */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 10px rgba(1, 255, 205, 0.2); }
    50% { box-shadow: 0 0 30px rgba(1, 255, 205, 0.6); }
    100% { box-shadow: 0 0 10px rgba(1, 255, 205, 0.2); }
}

.animate-pulse-glow {
    animation: pulse-glow 3s infinite;
}

@keyframes scrollWheelPulse {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(6px); opacity: 0.3; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Efeito Parallax Reveal - Suave deslizar de baixo para cima */
.reveal-section {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s cubic-bezier(0.215, 0.610, 0.355, 1.000), 
                transform 1.0s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

.reveal-section.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- HERO MINIMALISTA & CENTRALIZADO (ESTILO AXIS PREMIUM) --- */
.hero-minimal {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 160px 0 60px 0 !important;
}

.hero-centered-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    gap: 50px;
    position: relative;
    z-index: 5;
}

.axis-hero-title-giant {
    font-family: var(--font-primary); /* Montserrat */
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
    color: #ffffff; /* Sempre branco contra o vídeo */
    text-transform: uppercase;
    text-shadow: 0 4px 30px rgba(0,0,0,0.7);
    margin: 0;
    max-width: 950px;
    animation: fadeInUp 1.2s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

@media (min-width: 768px) {
    .axis-hero-title-giant {
        font-size: 5.5rem;
        letter-spacing: -3px;
    }
}

@media (min-width: 1200px) {
    .axis-hero-title-giant {
        font-size: 6.8rem;
        letter-spacing: -4px;
    }
}

/* Scroll Down Indicator */
.scroll-down-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition-normal), transform var(--transition-normal);
    animation: fadeInUp 1.2s cubic-bezier(0.215, 0.610, 0.355, 1.000) 0.4s both;
    cursor: pointer;
    margin-top: 20px;
}

.scroll-down-indicator:hover {
    color: var(--color-primary);
    transform: translateY(4px);
}

.mouse-icon {
    width: 28px;
    height: 48px;
    border: 2.2px solid currentColor;
    border-radius: 14px;
    position: relative;
}

.mouse-wheel {
    width: 4px;
    height: 9px;
    background-color: currentColor;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheelPulse 2s infinite ease-in-out;
}

.scroll-text {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

/* --- VITRINE INTERATIVA PREMIUM STYLE SKIPER-UI (SKIPER76) --- */
.modal-skiper-content {
    width: 95%;
    max-width: 1250px;
    height: auto;
    max-height: 92vh;
    border-radius: 28px;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    position: relative;
    padding: 0;
    transition: all var(--transition-normal);
}

body.light-theme .modal-skiper-content {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.08);
}

.modal-skiper-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 100;
    transition: var(--transition-fast);
}

body.light-theme .modal-skiper-close {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: #292829;
}

.modal-skiper-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

body.light-theme .modal-skiper-close:hover {
    background: rgba(0, 0, 0, 0.08);
    color: #000000;
    border-color: rgba(0, 0, 0, 0.2);
}

.modal-skiper-grid {
    display: grid;
    grid-template-columns: 1fr;
    height: 100%;
}

@media (min-width: 1024px) {
    .modal-skiper-grid {
        grid-template-columns: 3.8fr 6.2fr; /* Coluna direita alargada para destacar o hardware colossal */
    }
}

/* Coluna Esquerda: Detalhes e Acordeão */
.modal-skiper-left {
    padding: 35px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-height: 92vh;
    border-right: none;
}

body.light-theme .modal-skiper-left {
    border-right: none;
}

@media (min-width: 1024px) {
    .modal-skiper-left {
        padding: 55px;
        border-right: 1px solid rgba(255, 255, 255, 0.03);
    }
    
    body.light-theme .modal-skiper-left {
        border-right: 1px solid rgba(41, 40, 41, 0.05);
    }
}

.skiper-title-tag {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 8px;
}

body.light-theme .skiper-title-tag {
    color: #00b38f;
}

.skiper-title {
    font-family: var(--font-secondary);
    font-weight: 900;
    font-size: 2.2rem;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #ffffff;
    margin-bottom: 12px;
}

body.light-theme .skiper-title {
    color: #292829;
}

@media (min-width: 768px) {
    .skiper-title {
        font-size: 2.8rem;
    }
}

.skiper-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-light);
    opacity: 0.8;
    margin-bottom: 25px;
}

body.light-theme .skiper-desc {
    color: #444444;
    opacity: 0.95;
}

.skiper-features-title {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-color-muted);
    border-bottom: 1.5px solid var(--border-color);
    padding-bottom: 8px;
    margin-bottom: 20px;
}

/* --- VITRINE ESTILO APPLE (Pills de Recursos e Card Ativo) --- */
.skiper-features-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 25px;
    width: 100%;
}

/* Pills inativas */
.skiper-feature-item.inactive {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 9999px;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    align-self: flex-start;
}

body.light-theme .skiper-feature-item.inactive {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: rgba(0, 0, 0, 0.65);
}

.skiper-feature-item.inactive:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-1.5px);
}

body.light-theme .skiper-feature-item.inactive:hover {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.15);
    color: #000000;
}

/* Círculo do ícone (+) */
.skiper-feature-circle-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.25s ease;
}

body.light-theme .skiper-feature-circle-icon {
    border-color: rgba(0, 0, 0, 0.35);
    color: rgba(0, 0, 0, 0.65);
}

.skiper-feature-item.inactive:hover .skiper-feature-circle-icon {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

body.light-theme .skiper-feature-item.inactive:hover .skiper-feature-circle-icon {
    border-color: #000000;
    color: #000000;
    background: rgba(0, 0, 0, 0.05);
}

.skiper-feature-title-text {
    letter-spacing: 0.2px;
}

/* Card Ativo Expandido */
.skiper-feature-item.active {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    color: #ffffff;
    width: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    animation: fadeInCard 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

body.light-theme .skiper-feature-item.active {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: #1d1d1f;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

@keyframes fadeInCard {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Setas de navegação no card ativo */
.skiper-active-chevrons {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 2px;
    flex-shrink: 0;
}

.skiper-chevron-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.65);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    outline: none;
}

body.light-theme .skiper-chevron-btn {
    border-color: rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.02);
    color: rgba(0, 0, 0, 0.6);
}

.skiper-chevron-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.85);
    color: #ffffff;
    transform: scale(1.08);
}

body.light-theme .skiper-chevron-btn:hover {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.7);
    color: #000000;
}

.skiper-feature-active-content {
    flex-grow: 1;
}

.skiper-feature-desc-text {
    font-size: 0.94rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

body.light-theme .skiper-feature-desc-text {
    color: #1d1d1f;
}

.skiper-feature-desc-text strong {
    color: #ffffff;
    font-weight: 700;
}

body.light-theme .skiper-feature-desc-text strong {
    color: #000000;
}

/* Setas de Navegação Vertical (Skiper-UI Style) */
.nav-vertical-controls {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.nav-vertical-btn {
    width: 42px;
    height: 42px;
    border-radius: var(--border-radius-full);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

body.light-theme .nav-vertical-btn {
    border: 1.5px solid rgba(41, 40, 41, 0.08);
    background: rgba(41, 40, 41, 0.02);
    color: rgba(41, 40, 41, 0.6);
}

.nav-vertical-btn:hover {
    background: rgba(1, 255, 205, 0.08);
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 0 15px rgba(1, 255, 205, 0.15);
    transform: scale(1.05);
}

body.light-theme .nav-vertical-btn:hover {
    background: var(--color-dark);
    border-color: var(--color-dark);
    color: var(--color-white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Coluna Direita: Imagem Hardware Showcase */
.modal-skiper-right {
    background: radial-gradient(circle at center, rgba(1, 255, 205, 0.07) 0%, #0c0c0e 60%, #000000 100%);
    padding: 40px;
    display: flex;
    flex-direction: column; /* Stack image and bullets vertically */
    align-items: center;
    justify-content: center;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

body.light-theme .modal-skiper-right {
    background: radial-gradient(circle at center, rgba(1, 255, 205, 0.03) 0%, #ffffff 70%, #f5f5f7 100%);
    border-top: 1px solid rgba(41, 40, 41, 0.05);
}

@media (min-width: 1024px) {
    .modal-skiper-right {
        border-top: none;
        padding: 55px;
        flex-direction: column; /* Stack image and bullets vertically */
    }
}

.skiper-image-container {
    width: 100%;
    height: 380px; /* Altura limite para manter a proporção da imagem */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

@media (min-width: 768px) {
    .skiper-image-container {
        height: 460px;
    }
}

@media (min-width: 1024px) {
    .skiper-image-container {
        height: 520px;
    }
}

.skiper-product-image {
    width: auto;
    height: 90%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 35px 70px rgba(0,0,0,0.7));
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: scale(2.0); /* Monumental scale (occupies 2/3 of the right column area!) */
    pointer-events: none;
}

body.light-theme .skiper-product-image {
    filter: drop-shadow(0 25px 45px rgba(0,0,0,0.18));
}

/* --- SHOWCASE MONUMENTAL EMBUTIDO NA PÁGINA (ESTILO SKIPER-UI) --- */
.skiper-showcase-embedded {
    margin-top: 30px;
    width: 100%;
}

.skiper-models-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
    padding: 5px 0;
}

.skiper-model-btn {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    color: var(--text-color);
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-fast);
    overflow: hidden;
}

body.light-theme .skiper-model-btn {
    background: rgba(41, 40, 41, 0.02);
    border: 1.5px solid rgba(41, 40, 41, 0.08);
    color: #292829;
}

.skiper-model-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1, 255, 205, 0.1);
}

body.light-theme .skiper-model-btn:hover {
    border-color: var(--color-dark);
    color: var(--color-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.skiper-model-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #0b0a0c;
    font-weight: 900;
    box-shadow: 0 8px 24px rgba(1, 255, 205, 0.35), 0 0 15px rgba(1, 255, 205, 0.15);
    transform: translateY(-2px);
}

body.light-theme .skiper-model-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #0b0a0c;
    box-shadow: 0 8px 20px rgba(1, 255, 205, 0.25);
    transform: translateY(-2px);
}

/* --- GALERIA DE ÂNGULOS SLIDER/BULLETS (SKIPER-UI SHOWROOM) --- */
.skiper-gallery-bullets {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
    z-index: 10;
    position: relative;
    flex-wrap: wrap;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-full);
    backdrop-filter: blur(10px);
}

body.light-theme .skiper-gallery-bullets {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.skiper-bullet {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-primary);
    font-size: 0.78rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast) cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

body.light-theme .skiper-bullet {
    background: rgba(0, 0, 0, 0.03);
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    color: rgba(0, 0, 0, 0.6);
}

.skiper-bullet:hover {
    background: rgba(1, 255, 205, 0.12);
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: scale(1.12);
}

body.light-theme .skiper-bullet:hover {
    background: rgba(0, 0, 0, 0.06);
    border-color: var(--color-dark);
    color: var(--color-dark);
}

.skiper-bullet.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-dark);
    box-shadow: var(--glow-primary);
    transform: scale(1.05);
}

body.light-theme .skiper-bullet.active {
    background: var(--color-dark);
    border-color: var(--color-dark);
    color: var(--color-white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* --- ADAPTABILIDADE DO LIGHT MODE E CORREÇÃO DE CONTRASTE --- */
.visual-card-premium {
    border: 1px solid var(--border-color);
    background: radial-gradient(circle, rgba(1, 255, 205, 0.05) 0%, #141416 60%, #000000 100%);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background var(--transition-normal), border-color var(--transition-normal);
}

body.light-theme .visual-card-premium {
    background: radial-gradient(circle, rgba(1, 255, 205, 0.03) 0%, #ffffff 70%, #f5f5f7 100%);
}

.skiper-showcase-card {
    border: 1px solid var(--border-color);
    border-radius: 28px;
    overflow: hidden;
    background: #000000;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.4);
    transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

body.light-theme .skiper-showcase-card {
    background: #ffffff;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
}

/* --- BARRA DE PESQUISA INTERATIVA (SEARCH OVERLAY) --- */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2500;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 100px var(--spacing-md) var(--spacing-md) var(--spacing-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

body.light-theme .search-overlay {
    background: rgba(255, 255, 255, 0.96);
}

.search-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.search-box-container {
    width: 100%;
    max-width: 650px;
    margin-bottom: var(--spacing-md);
}

.search-box-container h3 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
}

body.light-theme .search-box-container h3 {
    color: #292829;
}

.search-input-field {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 16px 24px;
    border-radius: var(--border-radius-full);
    transition: all var(--transition-normal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

body.light-theme .search-input-field {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.08);
    color: #292829;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.search-input-field:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-primary);
    box-shadow: 0 0 25px rgba(1, 255, 205, 0.25);
}

body.light-theme .search-input-field:focus {
    background: #ffffff;
    border-color: var(--color-dark);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

/* Resultados da Busca */
.search-results-list {
    width: 100%;
    max-width: 650px;
    max-height: 55vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-right: 5px;
}

.search-result-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all var(--transition-fast) cubic-bezier(0.4, 0, 0.2, 1);
}

body.light-theme .search-result-item {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.05);
}

.search-result-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

body.light-theme .search-result-item:hover {
    background: #ffffff;
    border-color: var(--color-dark);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.search-result-item svg {
    transition: transform 0.2s ease;
}

.search-result-item:hover svg {
    transform: translateX(4px);
}

/* --- SUB-COMPONENTES E OTIMIZAÇÕES DE CONTRASTE --- */
.contact-success-icon {
    width: 80px;
    height: 80px;
    background: rgba(1, 255, 205, 0.1);
    border: 2px solid var(--color-primary);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    box-shadow: var(--glow-primary);
}

body.light-theme .contact-success-icon {
    background: rgba(0, 179, 143, 0.08);
    border-color: #00b38f;
    color: #00b38f;
    box-shadow: none;
}

.search-result-title {
    color: var(--text-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 3px;
    transition: color var(--transition-normal);
}

.search-result-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.search-result-arrow {
    color: var(--color-primary);
    transition: transform var(--transition-fast), color var(--transition-normal);
}

body.light-theme .search-result-arrow {
    color: #00b38f;
}

.search-result-item:hover .search-result-arrow {
    transform: translateX(4px);
}

/* --- DECORAÇÃO PARALLAX GEOMÉTRICA EM DIAGONAL TURQUESA --- */
.diagonal-section-wrapper {
    position: relative;
    overflow: hidden;
}

.parallax-diagonal-bg {
    position: absolute;
    top: -25%;
    left: -10%;
    width: 120%;
    height: 150%;
    background: linear-gradient(135deg, 
        transparent 45%, 
        rgba(1, 255, 205, 0.05) 45.1%, 
        rgba(1, 255, 205, 0.05) 55%, 
        transparent 55.1%,
        transparent 58%,
        rgba(0, 255, 255, 0.04) 58.1%,
        rgba(0, 255, 255, 0.04) 63%,
        transparent 63.1%
    );
    pointer-events: none;
    z-index: 0;
    transform: translateY(0);
    will-change: transform;
    transition: transform 0.1s ease-out;
}

body.light-theme .parallax-diagonal-bg {
    background: linear-gradient(135deg, 
        transparent 45%, 
        rgba(0, 179, 143, 0.03) 45.1%, 
        rgba(0, 179, 143, 0.03) 55%, 
        transparent 55.1%,
        transparent 58%,
        rgba(0, 150, 255, 0.02) 58.1%,
        rgba(0, 150, 255, 0.02) 63%,
        transparent 63.1%
    );
}

/* --- 5. O PENTÁGONO DE DIFERENCIAIS (RADAR CHART PREMIUM) --- */
.pentagon-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 40px auto;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.pentagon-svg-container {
    width: 260px;
    height: 260px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1024px) {
    .pentagon-svg-container {
        width: 330px;
        height: 330px;
    }
}

.pentagon-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 25px rgba(1, 255, 205, 0.12));
}

/* Polígono preenchido do Radar com gradiente turquesa translúcido */
.pentagon-radar-polygon {
    fill: rgba(1, 255, 205, 0.07);
    stroke: var(--color-primary);
    stroke-width: 2;
    transition: all var(--transition-normal);
}

body.light-theme .pentagon-radar-polygon {
    fill: rgba(0, 179, 143, 0.05);
    stroke: #00b38f;
}

/* Vértices circulares brancos brilhantes do Pentágono */
.pentagon-vertex {
    fill: #ffffff;
    stroke: var(--color-primary);
    stroke-width: 2.5;
    r: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    transform-origin: center;
}

body.light-theme .pentagon-vertex {
    stroke: #00b38f;
    fill: #ffffff;
}

/* Animação de pulsação nos vértices circulares */
@keyframes vertexPulse {
    0% { transform: scale(1); filter: drop-shadow(0 0 0px rgba(255,255,255,0)); }
    50% { transform: scale(1.22); filter: drop-shadow(0 0 8px rgba(1, 255, 205, 0.7)); }
    100% { transform: scale(1); filter: drop-shadow(0 0 0px rgba(255,255,255,0)); }
}

.pentagon-vertex {
    animation: vertexPulse 3.5s infinite ease-in-out;
}

/* Posições dos Vértices para aplicar delay individual na animação */
.vertex-top { animation-delay: 0s; }
.vertex-right-top { animation-delay: 0.7s; }
.vertex-right-bottom { animation-delay: 1.4s; }
.vertex-left-bottom { animation-delay: 2.1s; }
.vertex-left-top { animation-delay: 2.8s; }

/* Nós de texto ao redor do Pentágono */
.pentagon-text-node {
    width: 100%;
    max-width: 320px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 16px 20px;
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: all var(--transition-normal);
    z-index: 3;
}

body.light-theme .pentagon-text-node {
    background: rgba(0, 0, 0, 0.015);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.pentagon-text-node:hover {
    transform: translateY(-4px);
    border-color: rgba(1, 255, 205, 0.35);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

body.light-theme .pentagon-text-node:hover {
    border-color: rgba(0, 179, 143, 0.4);
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}

.pentagon-text-node h4 {
    font-family: var(--font-secondary);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--text-color);
    margin-bottom: 6px;
}

.pentagon-text-node p {
    font-size: 0.85rem;
    color: var(--text-color-muted);
    line-height: 1.4;
    margin: 0;
}

/* Layout de Posicionamento Absoluto Geométrico para Telas Desktop */
@media (min-width: 1024px) {
    .pentagon-text-node {
        position: absolute;
        max-width: 240px;
        background: none;
        border: none;
        backdrop-filter: none;
        padding: 0;
    }
    
    .pentagon-text-node:hover {
        transform: translateY(-2px);
        box-shadow: none;
    }
    
    .node-top {
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
    }
    .node-top:hover {
        transform: translateX(-50%) translateY(-2px);
    }
    
    .node-left-top {
        top: 22%;
        left: 1%;
        text-align: right;
    }
    
    .node-right-top {
        top: 22%;
        right: 1%;
        text-align: left;
    }
    
    .node-left-bottom {
        bottom: 5%;
        left: 8%;
        text-align: right;
    }
    
    .node-right-bottom {
        bottom: 5%;
        right: 8%;
        text-align: left;
    }
}

/* --- 6. FAIXA DIAGONAL MONUMENTAL TURQUESA (FULL-WIDTH SLICE) --- */
.diagonal-hero-slice {
    background-color: var(--color-primary);
    color: var(--color-dark);
    padding: 80px 0;
    position: relative;
    clip-path: polygon(0 30px, 100% 0, 100% calc(100% - 30px), 0 100%);
    margin: 40px 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.light-theme .diagonal-hero-slice {
    background-color: var(--color-dark);
    color: #ffffff;
}

.diagonal-hero-slice h2 {
    font-family: var(--font-secondary);
    font-weight: 900;
    font-size: 1.6rem;
    line-height: 1.25;
    letter-spacing: -0.8px;
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
    color: inherit;
    text-shadow: none;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .diagonal-hero-slice {
        padding: 200px 0;
        clip-path: polygon(0 95px, 100% 0, 100% calc(100% - 95px), 0 100%);
        margin: 100px 0;
    }
    
    .diagonal-hero-slice h2 {
        font-size: 3.6rem;
        letter-spacing: -2.5px;
        line-height: 1.15;
        padding: 0;
    }
}

/* --- 7. SEÇÃO CUSTOMIZAÇÃO B2B ANGULADA GRAFITE (S300 REAL NA MÃO) --- */
.angled-product-section {
    background-color: #151517;
    padding: 70px 0 80px 0;
    margin-top: -35px; /* Margem negativa suave para evitar cobrir o seletor no mobile */
    margin-bottom: -20px;
    clip-path: polygon(0 30px, 100% 0, 100% 100%, 0 calc(100% - 30px));
    position: relative;
    z-index: 4;
}

body.light-theme .angled-product-section {
    background-color: #f5f5f7;
}

@media (min-width: 768px) {
    .angled-product-section {
        padding: 150px 0 180px 0;
        margin-top: -125px; /* Margem negativa monumental para continuidade e sobreposição perfeita no desktop */
        margin-bottom: -50px;
        clip-path: polygon(0 75px, 100% 0, 100% 100%, 0 calc(100% - 75px));
    }
}

body.light-theme .angled-product-section {
    background-color: #f5f5f7;
}

.angled-product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 1024px) {
    .angled-product-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 80px;
    }
}

/* Coluna de Mídia do S300 na mão */
.angled-product-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.angled-real-image {
    max-width: 95%;
    max-height: 480px;
    object-fit: contain;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.45));
    border-radius: var(--border-radius-md);
    pointer-events: none;
}

body.light-theme .angled-real-image {
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.15));
}

/* Conteúdo explicativo lateral */
.angled-product-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.angled-product-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(1, 255, 205, 0.08);
    border: 1px solid rgba(1, 255, 205, 0.2);
    color: var(--color-primary);
    border-radius: var(--border-radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-family: var(--font-primary);
}

body.light-theme .angled-product-badge {
    background: rgba(0, 179, 143, 0.06);
    border-color: rgba(0, 179, 143, 0.25);
    color: #00b38f;
}

.angled-product-title {
    font-family: var(--font-secondary);
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: #ffffff;
    margin-bottom: 20px;
}

body.light-theme .angled-product-title {
    color: #292829;
}

.angled-product-desc {
    font-size: 0.96rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
}

body.light-theme .angled-product-desc {
    color: #444444;
}

/* --- CLASSE DE GRADE DE PRODUTOS RESPONSIVA --- */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
    width: 100%;
}

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* --- CARROSSEL DE PRODUTOS PREMIUM --- */
.products-carousel-container {
    position: relative;
    width: 100%;
    margin-top: 40px;
}

.products-carousel-track {
    display: flex;
    flex-direction: row;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 15px 5px 25px 5px;
    width: 100%;
    -ms-overflow-style: none;  /* IE/Edge */
    scrollbar-width: none;  /* Firefox */
}

.products-carousel-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.products-carousel-track .product-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    transition: transform var(--transition-normal);
}

@media (min-width: 640px) {
    .products-carousel-track .product-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (min-width: 1024px) {
    .products-carousel-track .product-card {
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media (min-width: 1200px) {
    .products-carousel-track .product-card {
        flex: 0 0 calc(25% - 22.5px);
    }
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-fast);
}

.carousel-arrow:hover {
    background: var(--color-primary);
    color: #0b0a0c;
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(1, 255, 205, 0.45);
}

.carousel-arrow-left {
    left: -24px;
}

.carousel-arrow-right {
    right: -24px;
}

body.light-theme .carousel-arrow {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: #121212;
}

body.light-theme .carousel-arrow:hover {
    background: var(--color-primary);
    color: #0b0a0c;
}

@media (max-width: 1024px) {
    .carousel-arrow {
        display: none; /* Swipe nativo no mobile/tablet */
    }
}

/* --- VÍDEO BACKGROUND FULL-BLEED (HERO MANIFESTO COMPARTILHADO) --- */
.hero-video-fullbleed {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #121212;
}

.hero-video-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.35;
    transition: opacity var(--transition-normal);
}

body.light-theme .hero-video-element {
    opacity: 0.15;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 12, 0.45) 0%, rgba(10, 10, 12, 0.95) 100%);
    z-index: 2;
    pointer-events: none;
    transition: background var(--transition-normal);
}

body.light-theme .hero-video-overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 160px 0 100px 0;
}

/* Imagens institucionais de preenchimento completo */
.l400-about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-slow);
}

.l400-about-img:hover {
    transform: scale(1.04);
}

/* --- ESTILOS DO VISUALIZADOR 3D INTERATIVO (MODEL-VIEWER) --- */
.model-3d-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: radial-gradient(circle, rgba(41,40,41,0.03) 0%, rgba(18,18,18,0.2) 100%);
    border: 1.5px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.model-3d-wrapper:hover {
    border-color: rgba(1, 255, 205, 0.35);
    box-shadow: var(--shadow-lg), 0 0 25px rgba(1, 255, 205, 0.04);
}

body.light-theme .model-3d-wrapper {
    background: radial-gradient(circle, rgba(240, 240, 245, 0.4) 0%, rgba(220, 220, 230, 0.2) 100%);
    border-color: rgba(41, 40, 41, 0.08);
}

body.light-theme .model-3d-wrapper:hover {
    border-color: rgba(0, 179, 143, 0.35);
    box-shadow: 0 15px 35px rgba(0,0,0,0.04), 0 0 20px rgba(0, 179, 143, 0.05);
}

/* Spinner e loaders */
.model-3d-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-color);
    z-index: 10;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 1s infinite linear;
    margin-bottom: 15px;
    box-shadow: 0 0 10px rgba(1, 255, 205, 0.05);
}

body.light-theme .loader-spinner {
    border-top-color: #00b38f;
}

.loader-percentage {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-color-muted);
    font-family: var(--font-primary);
    letter-spacing: 0.5px;
}

/* Legenda de orientação adaptada para Light/Dark */
.model-viewer-instructions {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(18, 18, 18, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1.5px solid rgba(255,255,255,0.05);
    padding: 10px 24px;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: none;
    z-index: 5;
    color: #ffffff;
    white-space: nowrap;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

body.light-theme .model-viewer-instructions {
    background: rgba(255, 255, 255, 0.85);
    border: 1.5px solid rgba(0,0,0,0.05);
    color: var(--color-dark);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- SUBMENU DROPDOWN NAV (Fase 15) --- */
.nav-item.has-submenu {
    position: relative;
}

.submenu-chevron {
    margin-left: 4px;
    transition: transform var(--transition-fast);
    vertical-align: middle;
}

.nav-item.has-submenu:hover .submenu-chevron {
    transform: rotate(180deg);
}

.submenu-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: rgba(18, 18, 18, 0.96);
    border: 1.5px solid var(--border-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    display: grid;
    grid-template-columns: repeat(4, 160px);
    gap: var(--spacing-md);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), var(--glow-primary);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast) ease, transform var(--transition-fast) ease;
    z-index: 1000;
}

.submenu-dropdown::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.nav-item.has-submenu:hover .submenu-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(5px);
}

.submenu-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.submenu-column h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 4px;
    font-weight: 800;
}

.submenu-column a {
    font-size: 0.85rem;
    color: var(--text-color-muted) !important;
    text-decoration: none;
    transition: color var(--transition-fast);
    padding: 2px 0;
    font-weight: 600;
}

.submenu-column a:hover {
    color: var(--color-primary) !important;
}

/* Light Theme Ajustes */
body.light-theme .submenu-dropdown {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.08);
}

body.light-theme .submenu-column h4 {
    color: var(--color-dark);
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

body.light-theme .submenu-column a {
    color: #444446 !important;
}

body.light-theme .submenu-column a:hover {
    color: var(--color-dark) !important;
}

/* --- SEÇÃO DE CONTATOS E BOTÕES PREMIUM (Fase 18) --- */
.contact-buttons-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    width: 100%;
}

@media (min-width: 768px) {
    .contact-buttons-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-btn-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-color-alt);
    border: 1.5px solid var(--border-color);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    text-decoration: none;
    transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-btn-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25), var(--glow-primary);
}

.contact-btn-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(1, 255, 205, 0.25);
    background: rgba(1, 255, 205, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.contact-btn-card:hover .contact-btn-icon {
    background: var(--color-primary);
    color: var(--color-dark);
}

.contact-btn-text h4 {
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-color);
    margin-bottom: 4px;
    font-weight: 800;
}

.contact-btn-text span {
    font-size: 0.85rem;
    color: var(--text-color-muted);
    font-weight: 600;
    word-break: break-all;
}

.contact-btn-card.whatsapp-btn-card {
    border-color: rgba(37, 211, 102, 0.3);
}

.contact-btn-card.whatsapp-btn-card .contact-btn-icon {
    border-color: rgba(37, 211, 102, 0.4);
    background: rgba(37, 211, 102, 0.06);
    color: #25d366;
}

.contact-btn-card.whatsapp-btn-card:hover {
    border-color: #25d366;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25), 0 0 20px rgba(37, 211, 102, 0.2);
}

.contact-btn-card.whatsapp-btn-card:hover .contact-btn-icon {
    background: #25d366;
    color: #ffffff;
}

/* Centralização e espaçamento do formulário */
.contact-form-container {
    max-width: 780px;
    margin: 0 auto;
    width: 100%;
}

.contact-form-container .contact-form {
    padding: var(--spacing-lg) var(--spacing-md);
    background: var(--bg-color-alt);
    border: 1.5px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form-container .form-group {
    margin-bottom: 25px;
}

/* Light Theme overrides para cards de contato */
body.light-theme .contact-btn-card {
    background: #ffffff;
}

body.light-theme .contact-btn-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

/* Para submenus pequenos (dropdown de 1 coluna) */
.submenu-dropdown.submenu-small {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    min-width: 220px;
    width: max-content;
    padding: var(--spacing-sm) var(--spacing-md);
    gap: 8px;
}

.submenu-dropdown.submenu-small .submenu-column {
    width: 100%;
}

.submenu-dropdown.submenu-small .submenu-column a {
    white-space: nowrap;
}

/* --- ESTILOS ADAPTATIVOS SPLITHUB & FORMULÁRIOS B2B (LIGHT / DARK MODE) --- */
body.light-theme .splithub-hero-gradient {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    border-bottom-color: rgba(0, 0, 0, 0.08) !important;
}

body.light-theme .splithub-hero-gradient h1 {
    color: var(--color-dark) !important;
}

body.light-theme .splithub-hero-gradient .hero-subtext {
    color: #008f72 !important;
}

body.light-theme .feature-card-glow {
    background: #ffffff !important;
    border: 1.5px solid rgba(41, 40, 41, 0.1) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

body.light-theme .feature-card-glow:hover {
    border-color: #00cca3 !important;
    box-shadow: 0 15px 35px rgba(0, 204, 163, 0.15) !important;
}

body.light-theme .feature-card-glow h3 {
    color: var(--color-dark) !important;
}

body.light-theme .feature-card-glow p,
body.light-theme .feature-card-glow li {
    color: #555555 !important;
}

body.light-theme .pillar-icon {
    background: rgba(0, 179, 143, 0.1) !important;
    color: #00997a !important;
}

body.light-theme .formula-box {
    background: #ffffff !important;
    border: 1.5px solid rgba(0, 179, 143, 0.3) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06) !important;
}

body.light-theme .formula-box .formula-text {
    color: var(--color-dark) !important;
}

body.light-theme .formula-box .formula-title {
    color: #008f72 !important;
}

body.light-theme .diagram-card {
    background: #ffffff !important;
    border: 1.5px solid rgba(41, 40, 41, 0.1) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06) !important;
}

body.light-theme .diagram-card .diagram-box {
    background: #f8f9fa !important;
    border: 1px solid rgba(41, 40, 41, 0.1) !important;
}

body.light-theme .diagram-card .diagram-box .box-title {
    color: #292829 !important;
}

body.light-theme .diagram-card .diagram-box .box-sub {
    color: #666666 !important;
}

body.light-theme .confia-card {
    background: #ffffff !important;
    border: 1.5px solid rgba(0, 179, 143, 0.3) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06) !important;
}

body.light-theme .confia-card h3 {
    color: #292829 !important;
}

body.light-theme .confia-card p {
    color: #444444 !important;
}

body.light-theme .confia-card .confia-pill {
    background: rgba(0, 179, 143, 0.08) !important;
    border-color: rgba(0, 179, 143, 0.25) !important;
    color: #00997a !important;
}

/* Formulário B2B e Inputs em Light Theme */
body.light-theme .contact-form-card {
    background: #ffffff !important;
    border: 1.5px solid rgba(41, 40, 41, 0.1) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06) !important;
}

body.light-theme label {
    color: var(--color-dark) !important;
}

body.light-theme input[type="text"],
body.light-theme input[type="email"],
body.light-theme textarea {
    background: #f8f9fa !important;
    border: 1.5px solid rgba(41, 40, 41, 0.15) !important;
    color: var(--color-dark) !important;
}

body.light-theme input[type="text"]::placeholder,
body.light-theme input[type="email"]::placeholder,
body.light-theme textarea::placeholder {
    color: #777777 !important;
}

body.light-theme input:focus,
body.light-theme textarea:focus {
    background: #ffffff !important;
    border-color: #00cca3 !important;
}

body.light-theme .modal-content {
    background: #ffffff !important;
    border: 1.5px solid rgba(41, 40, 41, 0.1) !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15) !important;
}

body.light-theme .modal-content h3 {
    color: var(--color-dark) !important;
}

body.light-theme .modal-content p {
    color: #666666 !important;
}

body.light-theme .form-control {
    background: #f8f9fa !important;
    border: 1.5px solid rgba(41, 40, 41, 0.15) !important;
    color: var(--color-dark) !important;
}

body.light-theme .form-control::placeholder {
    color: #777777 !important;
}

body.light-theme .form-label {
    color: var(--color-dark) !important;
}

/* --- AJUSTES SOLICITADOS NA VITRINE DE PRODUTOS E MODAL GLB --- */
/* 1. Remover todas as escritas acima do nome dos produtos */
.modal-title-tag,
.skiper-title-tag,
#modal-skiper-tag,
#embedded-skiper-tag {
    display: none !important;
}

/* 2. Deixar o texto da descrição do produto em VERDE */
.modal-desc,
.skiper-desc,
#modal-skiper-desc,
#embedded-skiper-desc {
    color: var(--color-primary) !important;
    font-weight: 700 !important;
    font-size: 1.08rem !important;
    line-height: 1.6 !important;
}

body.light-theme .modal-desc,
body.light-theme .skiper-desc,
body.light-theme #modal-skiper-desc,
body.light-theme #embedded-skiper-desc {
    color: #00876c !important;
}

/* 3. Remover a frase "RECURSOS E DISCLAIMERS (TOQUE PARA EXPANDIR)" */
.skiper-features-title {
    display: none !important;
}

/* 4. Garantir visibilidade imediata e 100% visível das Seções de Infográficos nas subpáginas */
#infografico-produto,
.infografico-wrapper {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    display: block !important;
    width: 100% !important;
    position: relative !important;
    z-index: 10 !important;
}

#infografico-produto img {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}
