/* ========================================
   RESET
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #FFFFFF;
    color: #000000;
    line-height: 1.6;
}

/* ========================================
   CONTAINER
======================================== */

.container {
    width: 100%;
    max-width: 1150px;
    margin: auto;
    padding: 0 20px;
}

/* ========================================
   HEADER
======================================== */

.header {
    background: #F0D84E;
    padding: 35px 0 45px;
    text-align: center;
}

.logo-area {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}

.logo-circle {
    width: 200px;
    height: 200px;
    background: #FFFFFF;
    border: 4px solid #000000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: 5px 5px 0 #000000;
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.brand h1 {
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -1px;
}

.brand h1 span {
    display: block;
}

.brand p {
    margin-top: 4px;
    font-size: 15px;
    font-weight: 600;
}

/* ========================================
   HERO
======================================== */

.hero {
    background: #FFFFFF;
    padding: 80px 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 470px;
    gap: 80px;
    align-items: center;
}

.hero-content {
    max-width: 560px;
}

.badge {
    display: inline-block;
    background: #000000;
    color: #F0D84E;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 52px;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.hero h2 strong {
    display: block;
    background: #F0D84E;
    padding: 0 8px;
    width: fit-content;
}

.hero-content > p {
    color: #666666;
    font-size: 18px;
    max-width: 500px;
}

/* ========================================
   FEATURES
======================================== */

.hero-features {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-weight: 700;
}

.hero-features div {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ========================================
   FORM CARD
======================================== */

.form-card {
    background: #FFFFFF;
    border: 3px solid #000000;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 10px 10px 0 #F0D84E;
}

.form-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.form-number {
    width: 45px;
    height: 45px;
    background: #F0D84E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.form-header h3 {
    font-size: 23px;
}

.form-header p {
    color: #666666;
    font-size: 13px;
}

/* ========================================
   FORMULÁRIO
======================================== */

.form-group {
    margin-bottom: 17px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 7px;
}

.form-group input,
.form-group select {
    width: 100%;
    height: 50px;
    padding: 0 14px;
    border: 2px solid #000000;
    border-radius: 9px;
    background: #F7F7F7;
    color: #000000;
    font-size: 14px;
    outline: none;
    transition: 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    background: #FFFFFF;
    box-shadow: 4px 4px 0 #F0D84E;
}

.form-group select:disabled {
    background: #EEEEEE;
    color: #777777;
}

/* ========================================
   TERMOS
======================================== */

.terms {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    margin: 20px 0;
}

.terms input {
    width: 17px;
    height: 17px;
    margin-top: 3px;
    accent-color: #000000;
}

.terms label {
    font-size: 11px;
    color: #666666;
}

/* ========================================
   BOTÃO
======================================== */

#submitButton {
    width: 100%;
    height: 55px;
    border: 3px solid #000000;
    border-radius: 9px;
    background: #000000;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: 0.2s;
}

#submitButton:hover {
    background: #F0D84E;
    color: #000000;
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 #000000;
}

#submitButton:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.arrow {
    font-size: 20px;
}

.privacy {
    text-align: center;
    margin-top: 13px;
    font-size: 10px;
    color: #777777;
}

/* ========================================
   COMO FUNCIONA
======================================== */

.how {
    background: #F7F7F7;
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title span {
    background: #F0D84E;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 900;
}

.section-title h2 {
    margin-top: 15px;
    font-size: 35px;
}

/* ========================================
   STEPS
======================================== */

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.step {
    background: #FFFFFF;
    border: 2px solid #000000;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.step-number {
    width: 55px;
    height: 55px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #F0D84E;
    border: 2px solid #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.step h3 {
    margin-bottom: 10px;
}

.step p {
    color: #666666;
    font-size: 14px;
}

/* ========================================
   CTA
======================================== */

.cta {
    background: #F0D84E;
    text-align: center;
    padding: 70px 0;
}

.cta h2 {
    font-size: 38px;
    margin-bottom: 10px;
}

.cta p {
    margin-bottom: 25px;
}

.cta-button {
    display: inline-block;
    background: #000000;
    color: #FFFFFF;
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 900;
    border: 3px solid #000000;
    transition: 0.2s;
}

.cta-button:hover {
    background: #FFFFFF;
    color: #000000;
}

/* ========================================
   FOOTER
======================================== */

.footer {
    background: #000000;
    color: #FFFFFF;
    padding: 35px 0;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer strong {
    font-size: 16px;
}

.footer p {
    color: #BBBBBB;
    font-size: 12px;
}

.copyright {
    text-align: right;
}

/* ========================================
   RESPONSIVO
======================================== */

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-content {
        max-width: 700px;
        margin: auto;
        text-align: center;
    }

    .hero h2 {
        font-size: 44px;
    }

    .hero h2 strong {
        margin: auto;
    }

    .hero-content > p {
        margin: auto;
    }

    .hero-features {
        align-items: center;
    }

    .form-card {
        max-width: 550px;
        width: 100%;
        margin: auto;
    }
}

@media (max-width: 650px) {
    .header {
        padding: 25px 0 35px;
    }

    .logo-circle {
        width: 150px;
        height: 150px;
    }

    .brand h1 {
        font-size: 25px;
    }

    .hero {
        padding: 55px 0;
    }

    .hero h2 {
        font-size: 36px;
    }

    .hero-content > p {
        font-size: 16px;
    }

    .form-card {
        padding: 23px 18px;
        box-shadow: 6px 6px 0 #F0D84E;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .cta h2 {
        font-size: 30px;
    }

    .footer .container {
        flex-direction: column;
        text-align: center;
    }

    .copyright {
        text-align: center;
    }
}
/* ========================================
   REDES SOCIAIS NO FOOTER
======================================== */

.social-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    text-decoration: none;
    transition: 0.3s;
}

.social-icon:hover {
    background: #F0D84E;
    border-color: #F0D84E;
    color: #000000;
    transform: translateY(-3px);
}

/* Ícone TikTok específico */
.social-icon.tiktok {
    background: #000000;
}

.social-icon.tiktok:hover {
    background: #F0D84E;
    border-color: #F0D84E;
}

/* Responsivo */
@media (max-width: 650px) {
    .footer .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .social-links {
        justify-content: center;
    }
}