:root {
    --primary: #FF1A1A;
    --primary-dark: #CC0000;
    --bg: #000000;
    --bg-alt: #121212;
    --text: #ffffff;
    --text-muted: #a0a0a0;
    --card: #1e1e1e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.highlight {
    color: var(--primary);
}

/* Header & Nav */
header {
    padding: 1.5rem 5%;
    background: rgba(0, 0, 0, 0.9);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 35px;
    vertical-align: middle;
}

.hero-logo {
    display: none;
    /* Removido conforme solicitado */
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('hero_fitness.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
}

.hero-content {
    max-width: 900px;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero p {
    font-size: 1.6rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: transform 0.3s, background 0.3s;
    border: none;
}

.btn.primary {
    background: var(--primary);
    color: white;
}

.btn.secondary {
    border: 2px solid white;
    color: white;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn.primary:hover {
    background: var(--primary-dark);
}

.primaryLarge {
    background: var(--primary);
    color: white;
    padding: 1.5rem 3.5rem;
    font-size: 1.2rem;
    width: auto !important;
}

/* Mission Section */
.mission {
    padding: 6rem 10%;
    background-color: var(--bg-alt);
    text-align: center;
}

.mission h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 900;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--card);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid #333;
}

.card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Features */
.features {
    padding: 6rem 10%;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    font-weight: 900;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.feature {
    text-align: center;
}

.feature .icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

/* App Showcase */
.app-showcase {
    padding: 6rem 10%;
    background-color: var(--bg-alt);
}

.app-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap-reverse;
}

.app-text {
    flex: 1;
    min-width: 300px;
}

.app-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.app-list {
    list-style: none;
    margin-top: 2rem;
}

.app-list li {
    margin-bottom: 1rem;
    font-weight: 700;
}

.app-mockup {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 300px;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: #222;
    border-radius: 40px;
    padding: 15px;
    border: 8px solid #333;
    box-shadow: 0 25px 50px -12px rgba(255, 26, 26, 0.2);
}

.screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.app-logo {
    font-weight: 900;
    margin-bottom: 2rem;
}

.workout-card {
    background: #1e1e1e;
    padding: 1rem;
    width: 100%;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

/* CTA Banner */
.cta-banner {
    padding: 8rem 5%;
    text-align: center;
    background: linear-gradient(rgba(255, 26, 26, 0.1), rgba(0, 0, 0, 1));
}

.cta-banner h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.cta-banner p {
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

/* Footer */
footer {
    padding: 4rem 10% 2rem;
    background: #000;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.footer-bottom {
    margin-top: 4rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    nav ul {
        display: none;
    }

    .hero p {
        font-size: 1.1rem;
    }
}

/* Modal Background */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

/* Modal Content Box */
.modal-content {
    background-color: #1a1a1a;
    margin: 5% auto;
    padding: 35px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 0 30px rgba(255, 26, 26, 0.2);
    position: relative;
    animation: slideDown 0.3s ease-out;
    border: 1px solid #333;
}

@keyframes slideDown {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close {
    position: absolute;
    right: 25px;
    top: 15px;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: var(--primary);
}

.modal-content h2 {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 5px;
}

.modal-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: #000;
    border: 1px solid #444;
    border-radius: 4px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

button.btn {
    cursor: pointer;
    border: none;
    width: 100%;
}