/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --azul-cobalto: #0047AB;
    --tegra-spark: #FF5D00;
    --off-white: #FAF9F6;
    --cinza-grafite: #9E9E9E;
    --dark-blue: #2B3147;
}

body {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--dark-blue);
    color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    padding: 20px 0;
    background-color: rgba(43, 49, 71, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 93, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    background: transparent;
    mix-blend-mode: normal;
}

/* Video Section */
.video-section {
    padding: 30px 0 20px;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #1a1d2e 100%);
}

.video-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 20px;
}

.video-container {
    max-width: 450px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 93, 0, 0.2);
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.video-container:hover {
    border-color: var(--tegra-spark);
    box-shadow: 0 25px 70px rgba(255, 93, 0, 0.2);
    transform: translateY(-5px);
}

.video-container video {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    display: block;
    background: #000;
}

/* Hero Section */
.hero {
    padding: 80px 0 120px;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #1a1d2e 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 93, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--off-white);
}

.highlight {
    color: var(--tegra-spark);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--cinza-grafite);
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.8;
}

/* Benefits */
.benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 93, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 93, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 93, 0, 0.1);
    transform: translateX(8px);
}

.benefit-icon {
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 1rem;
    color: var(--off-white);
}

/* Form Card */
.form-card {
    background: rgba(250, 249, 246, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 93, 0, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-header {
    margin-bottom: 32px;
}

.form-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--off-white);
}

.form-header p {
    color: var(--cinza-grafite);
    font-size: 0.95rem;
}

/* Form Styles */
.lead-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--off-white);
}

.form-group input {
    padding: 16px 20px;
    border-radius: 12px;
    border: 2px solid rgba(158, 158, 158, 0.2);
    background: rgba(250, 249, 246, 0.05);
    color: var(--off-white);
    font-size: 1rem;
    font-family: 'Satoshi', sans-serif;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: var(--cinza-grafite);
}

.form-group input:focus {
    outline: none;
    border-color: var(--tegra-spark);
    background: rgba(250, 249, 246, 0.08);
}

/* Buttons */
.btn-primary {
    padding: 18px 32px;
    background: var(--tegra-spark);
    color: var(--off-white);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Satoshi', sans-serif;
    margin-top: 8px;
}

.btn-primary:hover {
    background: #ff7326;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 93, 0, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    display: inline-block;
    padding: 18px 40px;
    background: transparent;
    color: var(--off-white);
    border: 2px solid var(--tegra-spark);
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Satoshi', sans-serif;
}

.btn-secondary:hover {
    background: var(--tegra-spark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 93, 0, 0.4);
}

/* Form Footer */
.form-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(158, 158, 158, 0.2);
}

.form-footer span {
    font-size: 0.85rem;
    color: var(--cinza-grafite);
    font-style: italic;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--dark-blue);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--off-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    padding: 40px 32px;
    background: rgba(250, 249, 246, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 93, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(250, 249, 246, 0.05);
    border-color: var(--tegra-spark);
    transform: translateY(-8px);
}

.feature-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--tegra-spark);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--off-white);
}

.feature-card p {
    color: var(--cinza-grafite);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 93, 0, 0.1) 0%, transparent 100%);
    border-top: 1px solid rgba(255, 93, 0, 0.2);
    border-bottom: 1px solid rgba(255, 93, 0, 0.2);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--off-white);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--cinza-grafite);
    margin-bottom: 40px;
    font-style: italic;
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    background: rgba(0, 0, 0, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand p {
    margin-top: 16px;
    color: var(--cinza-grafite);
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--cinza-grafite);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--tegra-spark);
}

/* Responsive Design */
@media (max-width: 968px) {
    .video-section {
        padding: 40px 0 30px;
    }

    .video-container {
        border-radius: 16px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-card {
        padding: 32px 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 60px 0 80px;
    }

    .hero-title {
        font-size: 1.875rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .features,
    .cta-section {
        padding: 60px 0;
    }
}

/* Success Message */
.success-message {
    display: none;
    padding: 20px;
    background: rgba(0, 255, 127, 0.1);
    border: 2px solid rgba(0, 255, 127, 0.3);
    border-radius: 12px;
    color: #00ff7f;
    text-align: center;
    margin-top: 20px;
    font-weight: 700;
}

.success-message.show {
    display: block;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
