/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    /* Deep black background */
    color: #fff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Hero Section with Galaxy Background */
.hero {
    position: relative;
    min-height: 45vh;
    /* Further reduced from 65vh */
    width: 100%;
    /* Fallback CSS background (Galaxy Simulation) */
    background: radial-gradient(ellipse at bottom, #1B2735 0%, #090A0F 100%);
    background-image:
        radial-gradient(1px 1px at 20px 30px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 40px 70px, #ffffff, rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 50px 160px, #ffffff, rgba(0, 0, 0, 0)),
        radial-gradient(1.5px 1.5px at 80px 120px, #ffffff, rgba(0, 0, 0, 0)),
        radial-gradient(1.5px 1.5px at 110px 190px, #ffffff, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 150px 220px, #ffffff, rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 100px 100px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 150px 70px, #ffffff, rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 200px 30px, #ffffff, rgba(0, 0, 0, 0)),
        radial-gradient(1.5px 1.5px at 250px 180px, #ffffff, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 300px 50px, #ffffff, rgba(0, 0, 0, 0)),
        radial-gradient(3px 3px at 50% 50%, rgba(255, 255, 255, 0.8), rgba(0, 0, 0, 0)),
        radial-gradient(circle at 50% 120%, rgba(80, 50, 200, 0.2), transparent 50%),
        url('galaxy_bg.png');
    /* Will show if available */
    background-size:
        300px 300px, 350px 350px, 200px 200px,
        250px 250px, 400px 400px, 500px 500px,
        320px 320px, 370px 370px, 220px 220px,
        270px 270px, 420px 420px,
        100% 100%, 100% 100%, cover;
    background-position:
        10% 20%, 30% 80%, 70% 10%,
        80% 60%, 40% 40%, 10% 90%,
        60% 30%, 20% 50%, 90% 90%,
        50% 10%, 10% 10%,
        center, center, center;
    background-repeat: repeat, repeat, repeat, repeat, repeat, repeat, repeat, repeat, repeat, repeat, repeat, no-repeat, no-repeat, no-repeat;
    background-attachment: fixed;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    z-index: 2;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    /* Subtle backdrop for text readability */
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-logo {
    max-width: 280px;
    /* Increased from 150px */
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.hero h1 {
    font-size: 2rem;
    /* Decreased from 3.5rem */
    margin-bottom: 0.5rem;
    background: linear-gradient(to bottom, #ffffff, #b3b3b3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
}

.hero p.hero-subtitle {
    font-size: 0.9rem;
    /* Decreased from 1.2rem */
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
}

/* Fade Overlay - The Magic Gradient */
.fade-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    /* Reduced fade height */
    background: linear-gradient(to bottom, transparent, #000);
    z-index: 1;
    pointer-events: none;
}

/* Main Content Area */
.content {
    padding: 0 2rem 4rem 2rem;
    /* Removed top padding */
    max-width: 800px;
    margin: 0 auto;
    background: #000;
    /* Continues the black background seamlessly */
}

.content section {
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
    animation-delay: 0.5s;
}

.content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #a29bfe;
}

.content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #aaa;
}

/* Animations */
@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(162, 155, 254, 0.5);
    }

    to {
        text-shadow: 0 0 20px rgba(162, 155, 254, 0.8), 0 0 30px rgba(162, 155, 254, 0.6);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Section Styles */
.form-section {
    padding-bottom: 2rem;
    /* Reduced from 6rem */
}

.form-container {
    background: rgba(255, 255, 255, 0.05);
    /* Glassmorphism base */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

/* Simulation of "Step 1" header from reference */
.form-header {
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.step-indicator {
    background: #e67e22;
    /* Use orange accent for 'Passo 1' */
    color: #fff;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.form-header h3 {
    font-size: 1.5rem;
    color: #fff;
    margin: 0.5rem 0;
}

.form-header p {
    font-size: 0.9rem;
    color: #aaa;
}

/* Input Fields */
.input-group {
    margin-bottom: 1.2rem;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #ccc;
    font-weight: 500;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: #a29bfe;
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 10px rgba(162, 155, 254, 0.2);
}

.input-group select option {
    background: #1B2735;
    /* Dark background for dropdown options */
    color: #fff;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 1rem;
    background: #2ecc71;
    /* Neon Green */
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.submit-btn:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.5);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-feedback {
    margin-top: 12px;
    font-size: 0.95rem;
    text-align: center;
}

.form-feedback.success {
    color: #2ecc71;
}

/* Differentiators Section */
/* Differentiators Section */
.diferenciais-section {
    padding: 0 2rem 6rem 2rem;
    max-width: 1100px;
    /* Increased from 800px */
    margin: 0 auto;
    text-align: center;
}

/* increased specificity to override .content h2 */
.content .section-title {
    font-size: 2.2rem;
    /* Increased from 1.8rem */
    color: #fff;
    margin-bottom: 3rem;
    text-transform: uppercase;
    line-height: 1.5;
    /* Increased from 1.4 */
    font-weight: 800;
}

.section-title .highlight,
.info-card h3 .highlight {
    color: #e67e22;
    /* Orange accent */
}

.card-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: #000;
    border: 1px solid #e67e22;
    /* Orange border */
    border-radius: 0;
    /* Square corners */
    padding: 2.5rem 2rem;
    position: relative;
    box-shadow: 0 0 15px rgba(230, 126, 34, 0.1);
}

.card-icon {
    width: 100px;
    /* Increased from 50px */
    height: auto;
    margin-bottom: 1.5rem;
}

.info-card h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    line-height: 1.3;
}

.info-card p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
}

/* Responsive Adjustments for Mobile */
@media (max-width: 768px) {
    .diferenciais-section {
        padding: 0 1.5rem 4rem 1.5rem;
    }

    .info-card {
        text-align: center;
        align-items: center;
        padding: 2rem 1.5rem;
    }

    .content .section-title {
        font-size: 1.5rem;
        /* Smaller title on mobile */
        margin-bottom: 2rem;
    }

    .card-icon {
        width: 80px;
        /* Slightly smaller icon on mobile */
    }
}