/* ==========================================================================
   Design System & Configurações Globais
   ========================================================================== */
:root {
    /* Cores de Fundo (Dark Mode Premium) */
    --bg-primary: #0b0f19;
    --bg-secondary: #111827;
    --bg-tertiary: #1f2937;
    
    /* Cores de Texto */
    --text-primary: #f9fafb;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    
    /* Cores de Destaque (Identidade Infohardware) */
    --primary: #2563eb; /* Azul Tecnológico */
    --primary-hover: #1d4ed8;
    --primary-light: rgba(37, 99, 235, 0.1);
    
    --accent: #eab308; /* Amarelo Âmbar */
    --accent-hover: #ca8a04;
    --accent-light: rgba(234, 179, 8, 0.1);
    
    --success: #10b981; /* Verde */
    --warning: #f59e0b; /* Laranja/Alerta */
    --danger: #ef4444;  /* Vermelho */
    
    /* Gradientes Modernos */
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    --gradient-accent: linear-gradient(135deg, #eab308 0%, #f97316 100%);
    --gradient-dark: linear-gradient(180deg, #111827 0%, #0b0f19 100%);
    --gradient-glow: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(234, 179, 8, 0.05) 60%, rgba(11, 15, 25, 0) 100%);
    
    /* Efeitos de Vidro (Glassmorphism) */
    --glass-bg: rgba(17, 24, 39, 0.75);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-glow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --glass-blur: blur(12px);
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.16);
    
    /* Fontes */
    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset Padrão */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

/* Utilidades de Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 7rem 0;
}

.bg-alt {
    background: var(--gradient-dark);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* ==========================================================================
   Componentes Reutilizáveis
   ========================================================================== */

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-slow);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
    background: linear-gradient(135deg, #1d4ed8 0%, #0891b2 100%);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--text-secondary);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

.btn-icon-right {
    margin-left: 0.5rem;
    font-size: 0.9em;
    transition: var(--transition-fast);
}

.btn-icon-left {
    margin-right: 0.5rem;
    font-size: 1.1em;
}

.btn:hover .btn-icon-right {
    transform: translateX(3px);
}

.btn-glow {
    position: relative;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gradient-primary);
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    filter: blur(10px);
    transition: var(--transition-normal);
}

.btn-glow:hover::after {
    opacity: 0.6;
}

/* Cabeçalho da Seção */
.section-header {
    max-width: 700px;
    margin: 0 auto 4.5rem auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

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

/* ==========================================================================
   Header / Barra de Navegação
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    background: rgba(11, 15, 25, 0.6);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    transition: var(--transition-normal);
}

.header.scrolled {
    background: var(--glass-bg);
    box-shadow: var(--glass-glow);
    padding: 0.25rem 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
    transition: var(--transition-normal);
}

.header.scrolled .header-container {
    height: 4rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    gap: 0.5rem;
}

.logo-icon {
    color: var(--accent);
    font-size: 1.4rem;
    animation: rotateChip 8s linear infinite;
}

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

.logo span span {
    color: var(--primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Menu de Navegação */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
    padding: 0.25rem 0;
}

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

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

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* ==========================================================================
   Menu Mobile Overlay
   ========================================================================== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(11, 15, 25, 0.9);
    backdrop-filter: blur(8px);
    z-index: 1001;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-card {
    width: 80%;
    max-width: 320px;
    height: 100%;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: var(--transition-slow);
}

.mobile-menu-overlay.active .mobile-menu-card {
    transform: translateX(0);
}

.close-menu-btn {
    align-self: flex-end;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.75rem;
    cursor: pointer;
    margin-bottom: 3rem;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: auto;
}

.mobile-link {
    text-decoration: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.mobile-link:hover {
    color: var(--accent);
    padding-left: 5px;
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    padding-top: 11rem;
    padding-bottom: 8rem;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
}

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

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    background: var(--accent-light);
    border: 1px solid rgba(234, 179, 8, 0.2);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
    margin-right: 0.5rem;
    box-shadow: 0 0 10px var(--accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 850;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.25rem;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    width: 100%;
}

.hero-ratings {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stars {
    color: #fbbf24;
    font-size: 0.9rem;
}

.ratings-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Visual Hero */
.hero-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-bg {
    position: absolute;
    width: 130%;
    height: 130%;
    top: -15%;
    left: -15%;
    background: var(--gradient-glow);
    z-index: 1;
    pointer-events: none;
}

.mockup-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.01) 100%);
    padding: 1px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 0 30px rgba(37, 99, 235, 0.15);
    border: 1px solid var(--border-color);
    transform: perspective(1000px) rotateY(-8deg) rotateX(6deg);
    transition: var(--transition-slow);
}

.mockup-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-5px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.8), 0 0 45px rgba(37, 99, 235, 0.25);
}

/* Tech Card Visual (Simulação de Dashboard/Monitor de Sistemas) */
.tech-card-visual {
    background: #0f1322;
    border-radius: 19px;
    overflow: hidden;
    padding: 1.5rem;
    font-family: monospace;
    font-size: 0.85rem;
    color: #67e8f9;
}

.tech-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding-bottom: 0.85rem;
    margin-bottom: 1.25rem;
}

.tech-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.tech-header .dot.red { background-color: #ef4444; }
.tech-header .dot.yellow { background-color: #f59e0b; }
.tech-header .dot.green { background-color: #10b981; }

.tech-title {
    color: var(--text-secondary);
    font-size: 0.75rem;
    margin-left: 0.5rem;
    font-weight: bold;
    text-transform: uppercase;
}

.tech-body {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.tech-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed rgba(255,255,255,0.03);
    padding-bottom: 0.5rem;
}

.tech-line .lbl {
    color: var(--text-secondary);
}

.tech-line .val {
    font-weight: bold;
    color: var(--text-primary);
}

.tech-line .val.success {
    color: #10b981;
}

.tech-line .val.warning {
    color: #f59e0b;
}

.tech-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 70px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 0.5rem;
    border: 1px solid rgba(255,255,255,0.04);
    margin-top: 0.5rem;
}

.tech-chart .bar {
    width: 14%;
    background: var(--gradient-primary);
    border-radius: 4px;
    animation: barGrow 2s ease-in-out infinite alternate;
}

@keyframes barGrow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.3); }
}

.tech-chart .bar:nth-child(2) { animation-delay: 0.3s; }
.tech-chart .bar:nth-child(3) { animation-delay: 0.6s; }
.tech-chart .bar:nth-child(4) { animation-delay: 0.1s; }
.tech-chart .bar:nth-child(5) { animation-delay: 0.4s; }

/* ==========================================================================
   Seção Sobre Nós
   ========================================================================== */
.about-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4.5rem;
    align-items: center;
}

.about-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-float-badge {
    position: absolute;
    background: rgba(17, 24, 39, 0.85);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--glass-glow);
    z-index: 5;
    animation: float 4s ease-in-out infinite;
}

.badge-top {
    top: 5%;
    left: -5%;
    animation-delay: 0s;
}

.badge-bottom {
    bottom: 8%;
    right: -2%;
    animation-delay: 2s;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

.card-float-badge i {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.badge-top i {
    color: var(--accent);
    background: var(--accent-light);
}

.card-float-badge div {
    display: flex;
    flex-direction: column;
}

.card-float-badge span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
}

.card-float-badge small {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Servidor Físico Simulado em Vetor CSS */
.server-mockup {
    width: 100%;
    max-width: 360px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 2px solid #334155;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.server-rack {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.server-unit {
    height: 38px;
    background: #020617;
    border: 1px solid #1e293b;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 1rem;
    position: relative;
}

.server-unit::before {
    content: '';
    position: absolute;
    left: 1rem;
    width: 40%;
    height: 4px;
    background: #334155;
    border-radius: 2px;
}

.server-unit .led {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-left: 0.5rem;
}

.server-unit .led.active {
    background-color: #10b981;
    box-shadow: 0 0 8px #10b981;
}

.server-unit .led.error {
    background-color: #ef4444;
    box-shadow: 0 0 8px #ef4444;
    animation: flash 1s infinite;
}

.server-unit .led-pulse {
    width: 6px;
    height: 6px;
    background-color: #06b6d4;
    border-radius: 50%;
    margin-left: 0.5rem;
    box-shadow: 0 0 6px #06b6d4;
    animation: flash 0.5s infinite alternate;
}

@keyframes flash {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-text {
    margin-top: 1.5rem;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

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

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.stat-lbl {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* ==========================================================================
   Seção de Serviços
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(17, 24, 39, 0.55);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(25, 30, 48, 0.7);
    border-color: var(--border-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(37, 99, 235, 0.1);
}

.service-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 14px;
    background: var(--primary-light);
    border: 1px solid rgba(37, 99, 235, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    transition: var(--transition-normal);
}

.service-card:hover .service-icon-wrapper {
    background: var(--gradient-primary);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.service-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    color: #fff;
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card-desc {
    color: var(--text-secondary);
    font-size: 0.975rem;
    line-height: 1.6;
}

/* ==========================================================================
   Seção de Preços (Pricing)
   ========================================================================== */
.pricing-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2rem;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
}

.toggle-label {
    color: var(--text-secondary);
    transition: var(--transition-fast);
    cursor: pointer;
}

.toggle-label.active {
    color: var(--text-primary);
}

/* Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 28px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    transition: .4s;
}

.slider::before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: var(--text-primary);
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--primary);
    border-color: var(--primary);
}

input:checked + .slider::before {
    transform: translateX(26px);
    background-color: #fff;
}

.slider.round {
    border-radius: 34px;
}

.slider.round::before {
    border-radius: 50%;
}

/* Grid de Planos */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.25rem;
    margin-top: 1.5rem;
}

.pricing-card {
    background: rgba(17, 24, 39, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem 2.25rem;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    background: rgba(17, 24, 39, 0.7);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.1);
}

.pricing-card.featured:hover {
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gradient-accent);
    color: #0b0f19;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.plan-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.plan-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.75rem;
    min-height: 2.7rem;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price-contact {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 850;
    color: var(--text-primary);
}

.billing-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.pricing-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.plan-btn {
    margin-bottom: 2.25rem;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
    gap: 0.75rem;
}

.plan-features li i {
    color: var(--accent);
    font-size: 1.1rem;
}

.pricing-card.featured .plan-features li i {
    color: var(--success);
}

.plan-features li.disabled {
    color: var(--text-muted);
}

.plan-features li.disabled i {
    color: var(--text-muted);
}

/* Lógica de Transição do Switch no Grid */
.pricing-grid.view-avulso #card-avulso {
    border: 2px solid var(--accent);
    background: rgba(17, 24, 39, 0.7);
    box-shadow: 0 15px 30px rgba(234, 179, 8, 0.1);
}
.pricing-grid.view-avulso #card-contrato {
    border: 1px solid var(--border-color);
    background: rgba(17, 24, 39, 0.5);
    box-shadow: none;
}

/* ==========================================================================
   Seção FAQ
   ========================================================================== */
.faq-container {
    max-width: 800px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: rgba(17, 24, 39, 0.55);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--border-hover);
    background: rgba(25, 30, 48, 0.6);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    gap: 1.5rem;
}

.faq-arrow {
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: var(--transition-normal);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* FAQ Aberto */
.faq-item.active {
    border-color: rgba(37, 99, 235, 0.3);
    background: rgba(15, 23, 42, 0.7);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--primary);
}

/* ==========================================================================
   Seção de Contato e Formulário
   ========================================================================== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.contact-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.detail-icon {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 12px;
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    border: 1px solid rgba(234, 179, 8, 0.2);
}

.contact-detail-item:nth-child(2) .detail-icon {
    color: var(--primary);
    background: var(--primary-light);
    border-color: rgba(37, 99, 235, 0.2);
}

.contact-detail-item div {
    display: flex;
    flex-direction: column;
}

.contact-detail-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.contact-detail-item p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 0.25rem;
}

.contact-form-panel {
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: var(--glass-glow);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: #0f1322;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    outline: none;
    width: 100%;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.15);
    background: #111827;
}

.contact-form textarea {
    resize: none;
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2em;
    padding-right: 2.5rem;
    cursor: pointer;
}

/* ==========================================================================
   Rodapé (Footer)
   ========================================================================== */
.footer {
    border-top: 1px solid var(--border-color);
    background: #090c15;
    padding-top: 5rem;
    padding-bottom: 2.5rem;
}

.footer-bottom-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border-color);
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 1.25rem;
    margin-bottom: 1.75rem;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-fast);
    border: 1px solid var(--border-color);
}

.footer-socials a:hover {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-links-group {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    grid-column: span 2;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: var(--accent);
}

.footer-column .foot-text {
    font-size: 0.925rem;
    color: var(--text-secondary);
    margin: 0;
}

.footer-column .foot-text strong {
    color: var(--text-primary);
}

.footer-copyright-row {
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Responsividade (Medias Queries)
   ========================================================================== */

@media (max-width: 1024px) {
    .section-padding {
        padding: 5rem 0;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-ratings {
        justify-content: center;
    }
    
    .mockup-wrapper {
        transform: none;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .mockup-wrapper:hover {
        transform: translateY(-5px);
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }
    
    .about-visual {
        max-width: 360px;
        margin: 0 auto;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .footer-bottom-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links-group {
        grid-column: span 1;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .header-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 2.5rem 1.75rem;
    }
    
    .footer-links-group {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}
