/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores baseadas no manual da marca Itex */
    --primary-color: #1e40af; /* Azul principal */
    --primary-hover: #1d4ed8;
    --secondary-color: #059669; /* Verde */
    --accent-color: #f59e0b; /* Amarelo/laranja */
    --dark-color: #1f2937;
    --light-color: #f8fafc;
    --white: #ffffff;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    
    /* Tipografia */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Espaçamento */
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Bordes e sombras */
    --border-radius: 0.5rem;
    --border-radius-lg: 1rem;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--gray-700);
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Header e Navegação */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-xl);
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--gray-700);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 130px 0 80px 0; /* 70px header + ~50px banner + gap */
    background: var(--gradient-primary);
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><path d="m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>') repeat;
    opacity: 0.1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-2xl);
    opacity: 0.9;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: var(--font-size-base);
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: var(--font-size-sm);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Graphics */
.hero-graphic {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    min-width: 140px;
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    animation: float 6s ease-in-out infinite;
    color: var(--white);
    font-weight: 600;
}

.card-icon {
    font-size: 2rem;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.card-3 {
    top: 5%;
    left: 50%;
    animation-delay: 4s;
}

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

/* Seções gerais */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: var(--spacing-md);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Sobre Section */
.sobre {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.sobre-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.sobre-text p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.sobre-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    color: var(--gray-600);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.sobre-logo {
    width: 100%;
    max-width: 300px;
    height: auto;
}

/* Serviços Section */
.servicos {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-100);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.servico-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-2xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.servico-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.servico-principal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.servico-icon {
    margin-bottom: var(--spacing-lg);
}

.icon-bg {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
    color: var(--white);
}

.servico-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: var(--spacing-md);
}

.servico-description {
    color: var(--gray-600);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.servico-features {
    list-style: none;
    text-align: left;
}

.servico-features li {
    padding: var(--spacing-xs) 0;
    color: var(--gray-600);
    position: relative;
    padding-left: var(--spacing-lg);
}

.servico-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.servico-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--gradient-primary);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius);
    font-size: var(--font-size-xs);
    font-weight: 600;
}

/* Como Funciona Section */
.como-funciona {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.processo-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.processo-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin: 0 auto var(--spacing-lg) auto;
}

.step-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: var(--spacing-md);
}

.step-description {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Contato Section */
.contato {
    padding: var(--spacing-3xl) 0;
    background: var(--gradient-primary);
    color: var(--white);
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: start;
}

.contato-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
}

.contato-subtitle {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-2xl);
    opacity: 0.9;
    line-height: 1.6;
}

.contato-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.feature-icon {
    font-size: var(--font-size-lg);
}

/* Formulário */
.form {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    font-size: var(--font-size-base);
    transition: border-color 0.3s ease;
    font-family: var(--font-family);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: var(--spacing-3xl) 0 var(--spacing-lg) 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-xl);
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: var(--spacing-md);
}

.footer-description {
    opacity: 0.8;
    line-height: 1.6;
}

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

.footer-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: var(--spacing-xs);
}

.footer-list a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: var(--white);
}

/* Footer contact links styling */
.footer-list li a {
    transition: all 0.3s ease;
    border-radius: 4px;
    padding: 2px 6px;
    margin: -2px -6px;
}

.footer-list li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white) !important;
}

.footer-bottom {
    border-top: 1px solid var(--gray-600);
    padding-top: var(--spacing-lg);
    text-align: center;
    opacity: 0.8;
}

/* Agendamento Direto */
.agenda-direta {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    border: 1px solid #0ea5e9;
}

.btn-agenda {
    display: inline-block;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.btn-agenda:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
}

.agenda-texto {
    margin: 10px 0 0 0;
    color: #0369a1;
    font-size: 0.9rem;
    font-style: italic;
}

/* Server Watch Showcase Section */
.sw-showcase {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 60%, #065f46 100%) !important;
    color: var(--white) !important;
    overflow: hidden;
}

.sw-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.sw-badge {
    display: inline-block;
    background: rgba(245, 158, 11, 0.2);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-md);
}

.sw-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
}

.sw-subtitle {
    font-size: var(--font-size-lg);
    opacity: 0.85;
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.sw-features {
    list-style: none;
    margin-bottom: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.sw-features li {
    font-size: var(--font-size-base);
    opacity: 0.9;
}

.sw-btn {
    background: var(--accent-color);
    color: var(--white);
    border: 2px solid var(--accent-color);
    font-size: var(--font-size-base);
}

.sw-btn:hover {
    background: #d97706;
    border-color: #d97706;
    color: var(--white);
    transform: translateY(-2px);
}

/* Mockup de tela */
.sw-window {
    background: #0f172a;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 24px 64px rgba(0,0,0,0.5);
    overflow: hidden;
}

.sw-window-bar {
    background: #1e293b;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sw-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.sw-dot-red { background: #ef4444; }
.sw-dot-yellow { background: #f59e0b; }
.sw-dot-green { background: #10b981; }

.sw-window-title {
    flex: 1;
    text-align: center;
    font-size: var(--font-size-xs);
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

.sw-window-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sw-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.sw-stat-card {
    background: #1e293b;
    border-radius: var(--border-radius);
    padding: 0.6rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-left: 3px solid transparent;
    font-size: var(--font-size-xs);
}

.sw-stat-ok { border-left-color: #10b981; }
.sw-stat-warn { border-left-color: #f59e0b; }

.sw-stat-icon { font-size: 0.75rem; }

.sw-stat-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.sw-stat-label {
    color: rgba(255,255,255,0.5);
    font-size: 10px;
}

.sw-stat-value {
    color: var(--white);
    font-weight: 600;
    font-size: 11px;
}

.sw-stat-uptime {
    color: #10b981;
    font-weight: 700;
    font-size: 10px;
}

.sw-metrics {
    background: #1e293b;
    border-radius: var(--border-radius);
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sw-metric {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sw-metric-label {
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    width: 32px;
    flex-shrink: 0;
}

.sw-metric-bar {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 999px;
    overflow: hidden;
}

.sw-metric-fill {
    height: 100%;
    border-radius: 999px;
    transition: width 1s ease;
}

.sw-metric-val {
    font-size: 10px;
    color: rgba(255,255,255,0.6);
    width: 28px;
    text-align: right;
}

.sw-alert-row {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.sw-alert {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--border-radius);
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 10px;
}

.sw-alert-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.sw-alert-text {
    flex: 1;
    color: rgba(255,255,255,0.8);
}

.sw-alert-time {
    color: rgba(255,255,255,0.4);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .sw-showcase-grid {
        grid-template-columns: 1fr;
    }
    .sw-stats-row {
        grid-template-columns: 1fr;
    }
}

/* Hero Server Watch Preview */
.hero-sw-preview {
    background: rgba(0,0,0,.35);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 1rem;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
    animation: hero-sw-float 4s ease-in-out infinite;
}

@keyframes hero-sw-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-sw-label {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.6);
}

.hero-sw-status-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
}

.hero-sw-status {
    background: rgba(255,255,255,.07);
    border-radius: .5rem;
    padding: .5rem .6rem;
    display: flex;
    align-items: center;
    gap: .4rem;
    border-left: 3px solid transparent;
}

.hero-sw-status.ok { border-left-color: #10b981; }
.hero-sw-status.warn { border-left-color: #f59e0b; }

.hero-sw-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-sw-status.ok .hero-sw-dot {
    background: #10b981;
    box-shadow: 0 0 6px #10b981;
    animation: sw-blink 2s ease-in-out infinite;
}

.hero-sw-status.warn .hero-sw-dot {
    background: #f59e0b;
    box-shadow: 0 0 6px #f59e0b;
    animation: sw-blink 1s ease-in-out infinite;
}

@keyframes sw-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: .4; }
}

.hero-sw-sname { font-size: 10px; color: rgba(255,255,255,.9); font-weight: 600; }
.hero-sw-sup { font-size: 9px; color: rgba(255,255,255,.45); }

.hero-sw-metrics {
    background: rgba(255,255,255,.05);
    border-radius: .5rem;
    padding: .6rem .75rem;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.hero-sw-metric { display: flex; align-items: center; gap: .5rem; }
.hero-sw-mlabel { font-size: 9px; color: rgba(255,255,255,.5); width: 28px; flex-shrink: 0; }
.hero-sw-mbar { flex: 1; height: 5px; background: rgba(255,255,255,.1); border-radius: 999px; overflow: hidden; }
.hero-sw-mfill { height: 100%; border-radius: 999px; }
.hero-sw-mval { font-size: 9px; color: rgba(255,255,255,.55); width: 24px; text-align: right; }

.hero-sw-alert {
    background: rgba(245,158,11,.15);
    border: 1px solid rgba(245,158,11,.4);
    border-radius: .5rem;
    padding: .45rem .65rem;
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: 9px;
    color: rgba(255,255,255,.8);
}

.hero-sw-alert-dot {
    width: 6px;
    height: 6px;
    background: #f59e0b;
    border-radius: 50%;
    flex-shrink: 0;
    animation: sw-pulse 1.2s ease-in-out infinite;
}

.hero-sw-alert-time { margin-left: auto; color: rgba(255,255,255,.4); flex-shrink: 0; }

.hero-sw-cta {
    display: block;
    text-align: center;
    background: #f59e0b;
    color: #fff;
    border-radius: .5rem;
    padding: .5rem .75rem;
    font-size: .75rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s ease;
    margin-top: .25rem;
}

.hero-sw-cta:hover {
    background: #d97706;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .hero-sw-preview { display: none; }
}

/* Server Watch Banner - destaque no hero */
.serverwatch-hero-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    background: linear-gradient(135deg, #1e3a8a 0%, #059669 100%);
    color: var(--white);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-xl);
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.serverwatch-hero-badge {
    font-weight: 700;
    font-size: var(--font-size-lg);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.serverwatch-hero-icon {
    font-size: 1.5rem;
}

.serverwatch-hero-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.serverwatch-hero-title {
    font-size: var(--font-size-lg);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.95;
}

.serverwatch-hero-text {
    font-size: var(--font-size-base);
    font-weight: 600;
}

.serverwatch-hero-btn {
    background: var(--white);
    color: var(--primary-color);
    padding: 0.5rem 1.25rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: var(--font-size-sm);
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
    border: 2px solid var(--white);
}

.serverwatch-hero-btn:hover {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

/* Botão Server Watch dentro do card de serviço (fundo claro) */
.btn-serverwatch-card {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    margin-top: var(--spacing-md);
}

.btn-serverwatch-card:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    color: var(--white);
}

/* Botão Server Watch nos CTAs do hero */
.btn.serverwatch-cta,
.btn.btn-serverwatch {
    background: var(--accent-color) !important;
    color: var(--white) !important;
    border-color: var(--accent-color) !important;
}

.btn.serverwatch-cta:hover,
.btn.btn-serverwatch:hover {
    background: #d97706 !important;
    border-color: #d97706 !important;
    transform: translateY(-2px);
}


/* Server Watch Float (sempre visível) */
.serverwatch-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    padding: 0.65rem 1.25rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-sm);
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.5);
    z-index: 1100;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.serverwatch-float:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.serverwatch-float-text {
    white-space: nowrap;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.whatsapp-icon {
    font-size: 1.5rem;
    color: var(--white);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 15% auto;
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-lg);
    font-size: var(--font-size-2xl);
    cursor: pointer;
    color: var(--gray-600);
}

.modal-close:hover {
    color: var(--gray-800);
}

/* Language Selector */
.language-selector {
    margin-left: var(--spacing-lg);
}

.lang-select {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 8px 12px;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.lang-select:hover {
    border-color: var(--primary-color);
}

.lang-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: var(--spacing-lg) 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-xl);
    }

    .hero-title {
        font-size: var(--font-size-3xl);
    }

    .hero-subtitle {
        font-size: var(--font-size-base);
    }

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

    .hero-graphic {
        height: 250px;
    }

    .sobre-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sobre-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

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

    .processo-timeline {
        grid-template-columns: 1fr;
    }

    .contato-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .agenda-direta {
        margin: 20px 0;
        padding: 15px;
    }

    .btn-agenda {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 1rem;
    }

    .language-selector {
        margin-left: 0;
        margin-top: var(--spacing-md);
    }

    .lang-select {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .hero {
        padding: 100px 0 60px 0;
    }

    .hero-title {
        font-size: var(--font-size-2xl);
    }

    .section-title {
        font-size: var(--font-size-2xl);
    }

    .contato-title {
        font-size: var(--font-size-2xl);
    }

    .servico-card {
        padding: var(--spacing-lg);
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-icon {
        font-size: 1.25rem;
    }

    .serverwatch-banner-content {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }

    .serverwatch-banner-text {
        font-size: var(--font-size-xs);
    }

    .serverwatch-float {
        bottom: 20px;
        left: 20px;
        padding: 0.5rem 0.75rem;
        font-size: var(--font-size-xs);
    }

    .serverwatch-float-text {
        max-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Smooth scrolling para navegação */
html {
    scroll-padding-top: 70px;
}

/* Estados de focus para acessibilidade */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Loading states */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    margin-left: 8px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Thank You Page Styles */
.thank-you-section {
    padding: 120px 0 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--light-color);
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: var(--spacing-2xl);
}

.success-checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: var(--secondary-color);
    stroke-miterlimit: 10;
    margin: 0 auto var(--spacing-lg) auto;
    box-shadow: inset 0px 0px 0px var(--secondary-color);
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
    position: relative;
}

.success-checkmark .check-icon {
    width: 56px;
    height: 56px;
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 1;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-checkmark .check-icon:before {
    content: '✓';
    color: white;
    font-size: 32px;
    font-weight: bold;
}

.thank-you-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: var(--spacing-lg);
}

.thank-you-subtitle {
    font-size: var(--font-size-xl);
    color: var(--gray-600);
    margin-bottom: var(--spacing-3xl);
    line-height: 1.6;
}

.next-steps {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-2xl);
    text-align: left;
    box-shadow: var(--shadow-md);
}

.next-steps h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-lg);
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--gray-200);
    position: relative;
    padding-left: var(--spacing-xl);
}

.next-steps li:last-child {
    border-bottom: none;
}

.next-steps li:before {
    content: '⏱️';
    position: absolute;
    left: 0;
    top: var(--spacing-sm);
}

.contact-urgency {
    background: var(--gradient-primary);
    color: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-2xl);
}

.contact-urgency h3 {
    margin-bottom: var(--spacing-lg);
    color: var(--white);
}

.urgent-contacts {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.footer-content-simple {
    text-align: center;
    padding: var(--spacing-xl) 0;
}

/* Animations for thank you page */
@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px var(--secondary-color);
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

/* Print styles */
@media print {
    .header,
    .whatsapp-float,
    .modal {
        display: none;
    }
    
    body {
        color: black;
        background: white;
    }
    
    .hero {
        background: white;
        color: black;
    }
} 