/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #6b7280;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    color: white;
}

.btn-primary:disabled {
    background: linear-gradient(135deg, #9ca3af, #6b7280);
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #e5e7eb;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.nav-brand i {
    font-size: 2rem;
}

.coming-soon-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.hero-text h1 .highlight {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.countdown-container {
    margin-bottom: 2rem;
}

.countdown-text {
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.notify-button {
    margin-bottom: 1rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-mockup {
    width: 100%;
    max-width: 500px;
    height: 300px;
    background: url('sistema-gestao.jpg') center/cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.9);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.overlay-content h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: spin 2s linear infinite;
}

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

.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 20px;
    right: -20px;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 30px;
    left: -30px;
    animation-delay: 2s;
}

.floating-card.card-3 {
    top: 50%;
    right: -40px;
    animation-delay: 4s;
}

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

.card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 0.5rem;
}

.card-title {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.card-value {
    color: #10b981;
    font-weight: 700;
    font-size: 0.8rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Problem Solution Section */
.problem-solution {
    padding: 80px 0;
    background: white;
}

.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.comparison-card {
    padding: 2rem;
    border-radius: 16px;
    position: relative;
}

.comparison-card.before {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 2px solid #fecaca;
}

.comparison-card.after {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 2px solid #bbf7d0;
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.comparison-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.comparison-card.before .comparison-icon {
    background: #ef4444;
    color: white;
}

.comparison-card.after .comparison-icon {
    background: #10b981;
    color: white;
}

.comparison-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.comparison-card.before .comparison-title {
    color: #dc2626;
}

.comparison-card.after .comparison-title {
    color: #059669;
}

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

.comparison-list li {
    padding: 0.5rem 0;
    color: #374151;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    height: fit-content;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.coming-soon-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.feature-card p {
    margin-bottom: 1.5rem;
    color: #6b7280;
    flex-grow: 1;
}

.feature-list {
    list-style: none;
    margin-top: auto;
    padding-top: 1rem;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-list i {
    color: #f59e0b;
    font-size: 0.8rem;
    min-width: 16px;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: white;
}

.benefits-preview {
    margin-top: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.benefit-card h4 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.coming-soon-small {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
}

/* Technology Section */
.technology {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f2937, #111827);
    color: white;
}

.technology .section-header h2,
.technology .section-header p {
    color: white;
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

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

.tech-feature {
    text-align: center;
    padding: 1.5rem;
    position: relative;
}

.tech-feature i {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.tech-feature h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.tech-feature p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.tech-status {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
}

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

.tech-preview {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #374151, #1f2937);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.preview-overlay {
    text-align: center;
    color: white;
}

.preview-overlay i {
    color: #3b82f6;
    margin-bottom: 1rem;
}

.preview-overlay h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.preview-overlay p {
    color: #9ca3af;
    margin: 0;
}

/* Launch Notification Section */
.launch-notification {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    text-align: center;
}

.notification-content {
    max-width: 800px;
    margin: 0 auto;
}

.notification-icon {
    margin-bottom: 2rem;
}

.notification-icon i {
    font-size: 4rem;
    color: white;
    animation: rocket 3s ease-in-out infinite;
}

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

.notification-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.notification-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.launch-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.launch-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.launch-feature i {
    color: #10b981;
    font-size: 1.2rem;
}

.launch-feature span {
    color: white;
    font-weight: 500;
}

.launch-cta {
    margin-top: 2rem;
}

.launch-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        min-height: auto;
        padding: 1.5rem;
    }

    .tech-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

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

    .floating-cards {
        display: none;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }

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

    .feature-card {
        padding: 1.5rem;
        min-height: auto;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
}


/* Infrastructure Section */
.infrastructure {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: white;
}

.infrastructure .section-header h2,
.infrastructure .section-header p {
    color: white;
}

.infrastructure-content {
    margin-top: 3rem;
}

.infrastructure-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.intro-text h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.intro-text p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.partnership-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.noc-dashboard {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.dashboard-header h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.status-indicators {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-dot.green {
    background: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.status-item span {
    color: #e2e8f0;
    font-size: 0.9rem;
}

.infrastructure-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.infra-feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.infra-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.infra-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.infra-feature h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.infra-feature p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

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

.infra-list li {
    padding: 0.5rem 0;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.infra-list i {
    color: #f59e0b;
    font-size: 0.8rem;
    min-width: 16px;
}

.infrastructure-highlight {
    background: linear-gradient(135deg, #059669, #047857);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 3rem;
}

.highlight-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-text h3 {
    color: white;
    margin-bottom: 1rem;
}

.highlight-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.certifications {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.cert-item i {
    color: #fbbf24;
    font-size: 1rem;
}

.cert-item span {
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Responsive Infrastructure */
@media (max-width: 768px) {
    .infrastructure-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .infrastructure-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .infra-feature {
        padding: 1.5rem;
    }

    .highlight-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .certifications {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .infrastructure {
        padding: 60px 0;
    }

    .infrastructure-intro {
        padding: 1.5rem;
    }

    .intro-text h3 {
        font-size: 1.5rem;
    }

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


/* Contact Badge Link */
.coming-soon-badge {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.coming-soon-badge:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.coming-soon-badge:visited {
    color: inherit;
}

