/* =========================================
   CONFIGURAÇÕES GERAIS
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #121212; /* Dark Premium */
    color: #F5F5F5;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
    height: 80px;
    display: flex;
    align-items: center;
    background: rgba(18, 18, 18, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.logo {
    font-weight: 900;
    font-size: 1.6rem;
    letter-spacing: -1px;
}

.logo span {
    color: #2ECC71;
}

.btn-nav {
    background: #2ECC71;
    color: #121212;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
    font-size: 0.9rem; /* Melhor para mobile */
}

.btn-nav:hover {
    background: #27ae60;
    transform: scale(1.05);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.9)), 
                url('https://images.unsplash.com/photo-1541625602330-2277a4c46182?q=80&w=2070');
    background-size: cover;
    background-position: center;
}

.hero h2 {
    font-size: 3.8rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero h2 span {
    color: #2ECC71;
}

.hero p {
    font-size: 1.25rem;
    color: #B0B0B0;
    max-width: 750px;
    margin: 0 auto 40px;
}

.btn-primary {
    display: inline-block;
    background: #F5F5F5;
    color: #121212;
    padding: 16px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    margin: 10px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #2ECC71;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.3);
}

/* =========================================
   FEATURES
   ========================================= */
.features {
    padding: 80px 0;
}

.features .container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-card {
    flex: 1;
    min-width: 300px;
    background: #1E1E1E;
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #2A2A2A;
}

.feature-card:hover {
    transform: translateY(-15px);
    background: #252525;
    border-color: #2ECC71;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.feature-card .icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s ease;
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #F5F5F5;
}

.feature-text {
    color: #B0B0B0;
    font-size: 1rem;
    opacity: 0.3;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-text {
    opacity: 1;
    color: #FFFFFF;
}

/* =========================================
   STATS, MAP & FAQ
   ========================================= */
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.5rem; color: #F5F5F5; }
.section-title p { color: #B0B0B0; }

.stats {
    background: #1A1A1A;
    padding: 60px 0;
    margin-bottom: 40px;
}
.stats .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}
.stat-item { text-align: center; }
.stat-item h4 { font-size: 2.8rem; color: #2ECC71; font-weight: 900; }
.stat-item p { color: #B0B0B0; text-transform: uppercase; font-size: 0.8rem; }

.map-preview { padding: 80px 0; }
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.gallery-item img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid #2A2A2A;
    transition: 0.3s;
}

.faq { padding: 80px 0; background: #161616; }
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.faq-item h5 { font-size: 1.2rem; color: #2ECC71; margin-bottom: 10px; }
.faq-item p { color: #B0B0B0; }

/* =========================================
   COMING SOON
   ========================================= */
.coming-soon { padding: 100px 0; background: #1A1A1A; text-align: center; }
.coming-soon h2 span { color: #2ECC71; }

.launch-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 50px 0;
    flex-wrap: wrap;
}
.detail-item {
    background: #252525;
    padding: 25px 40px;
    border-radius: 20px;
    border: 1px solid #2A2A2A;
    min-width: 250px;
}
.detail-label { color: #666; text-transform: uppercase; font-size: 0.75rem; font-weight: bold; }
.detail-value { color: #2ECC71; font-size: 1.6rem; font-weight: 900; }

.get-ready { max-width: 650px; margin: 0 auto; border-top: 1px solid #2A2A2A; padding-top: 50px; }
.get-ready h3 { font-size: 1.8rem; margin-bottom: 15px; }

/* =========================================
   FOOTER
   ========================================= */
footer {
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid #2A2A2A;
    color: #666;
    font-size: 0.85rem;
}

/* =========================================
   SUPER RESPONSIVIDADE (MOBILE FIRST)
   ========================================= */
@media (max-width: 768px) {
    /* Ajustes do Hero para não cortar texto */
    .hero { padding: 60px 0; }
    .hero h2 { font-size: 2.2rem; padding: 0 10px; }
    .hero p { font-size: 1.1rem; padding: 0 15px; }
    
    /* Navbar mais compacta */
    .logo { font-size: 1.3rem; }
    .btn-nav { padding: 8px 16px; font-size: 0.8rem; }

    /* Features sempre visíveis no mobile */
    .feature-card { padding: 35px 25px; min-width: 100%; }
    .feature-text { opacity: 1; color: #FFFFFF; }
    .feature-card:hover { transform: translateY(-5px); }

    /* Estatísticas em coluna */
    .stats .container { flex-direction: column; align-items: center; gap: 40px; }
    .stat-item h4 { font-size: 2.4rem; }

    /* Coming Soon mais ajustado */
    .launch-details { flex-direction: column; align-items: center; }
    .detail-item { width: 90%; }
    
    /* FAQ e Galeria */
    .section-title h2 { font-size: 1.8rem; }
    .gallery { grid-template-columns: 1fr; }
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact {
    padding: 100px 0;
    background: #121212;
}

.contact-card {
    background: #1E1E1E;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #2A2A2A;
}

.contact-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    color: #2ECC71;
    margin-bottom: 8px;
    font-weight: bold;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background: #121212;
    border: 1px solid #2A2A2A;
    border-radius: 12px;
    color: #F5F5F5;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: 0.3s;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    outline: none;
    border-color: #2ECC71;
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.1);
}

.btn-submit {
    width: 100%;
    background: #2ECC71;
    color: #121212;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #27ae60;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.2);
}

@media (max-width: 768px) {
    .contact-card { padding: 25px; width: 95%; }
}
