* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    background-color: #F8F7F5;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== SEÇÃO 01 - Suporte ===== */
.secao-01 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    padding: 2rem;
    gap: 2rem;
    background-color: #F8F7F5;
}

.logo-escrita {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
}

.title-secion6 {
    text-align: center;
    font-size: 62px;
    font-weight: 700;
    line-height: 1.2;
    color: #333;
    margin: 1rem 0;
}

/* Efeito Typewriter */
.typewriter {
    display: inline;
    background-color: transparent;
}

.typewriter::after {
    content: '|';
    background-color: transparent;
    animation: blink 0.7s infinite;
    color: #523A35;
    font-weight: 400;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.subtitle-secion6 {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #666;
    background-color: #F8F7F5;
    margin: 1rem 0 0 0;
}

/* ===== FORMULÁRIO DE SUPORTE ===== */
.form-suporte {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-suporte input[type="email"], .form-suporte input[type="text"], .form-suporte input[type="tel"] {
    width: 100%;
    padding: 1rem 1.2rem;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background-color: #fff;
    color: #333;
    transition: all 0.3s ease;
}

.form-suporte input[type="email"]:focus {
    outline: none;
    border-color: #E87DA0;
    box-shadow: 0 0 0 3px rgba(232, 125, 160, 0.15);
}

.form-suporte input[type="email"]::placeholder {
    color: #999;
}

.form-suporte textarea {
    width: 100%;
    min-height: 150px;
    padding: 1rem 1.2rem;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background-color: #fff;
    color: #333;
    resize: vertical;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-suporte textarea:focus {
    outline: none;
    border-color: #E87DA0;
    box-shadow: 0 0 0 3px rgba(232, 125, 160, 0.15);
}

.form-suporte textarea::placeholder {
    color: #999;
}

.btn-ajuda {
    display: inline-block;
    padding: 1rem 2rem;
background-color: #E1D5BD;
font-family: 'Inter', sans-serif;
    color: black;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.btn-ajuda:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(232, 125, 160, 0.5);
    background: linear-gradient(135deg, #D66B8E 0%, #C45A7D 100%);
}

.btn-ajuda:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(232, 125, 160, 0.4);
}

/* ===== BACKGROUND ===== */
.background {
background-image: url(/assets/img/image\ 17.png);
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}



/* ===== FOOTER ===== */
.footer {
    width: 100%;
    padding: 2rem;
    text-align: center;
    background-color: #F8F7F5;
}

.text-footer {
    font-size: 0.875rem;
    color: #999;
    line-height: 1.5;
}

/* ===== MEDIA QUERIES - TABLET (768px) ===== */
@media (max-width: 768px) {
    .secao-01 {
        padding: 1.5rem;
        gap: 1.5rem;
        min-height: auto;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .logo-escrita {
        max-width: 250px;
    }

    .title-secion6 {
        font-size: 48px;
    }

    .subtitle-secion6 {
        font-size: 0.95rem;
    }

    .form-suporte {
        max-width: 100%;
        padding: 1.5rem;
    }

    .footer {
        padding: 1.5rem;
    }

    .text-footer {
        font-size: 0.8rem;
    }
}

/* ===== MEDIA QUERIES - MOBILE (480px) ===== */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .secao-01 {
        background-color: #F8F7F5;
        padding: 1rem;
        gap: 1.2rem;
    }

    .logo-escrita {
        margin-top: 4%;
        max-width: 150px;
    }

    .title-secion6 {
        font-size: 2.5rem;
        color: #523A35;
    }

    .subtitle-secion6 {
        font-size: 0.9rem;
    }

    .form-suporte {
        padding: 1.2rem;
        gap: 0.8rem;
    }

    .form-suporte input[type="email"],
    .form-suporte textarea {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }

    .form-suporte textarea {
        min-height: 120px;
    }

    .btn-ajuda {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        font-family: 'Inter', sans-serif;
    }

    .background {
        height: 62vh;
    }

    .footer {
        padding: 1rem;
        margin-top: 10%;
    }

    .text-footer {
        font-size: 1rem;
    }
}

/* ===== MEDIA QUERIES - SMALL MOBILE (360px) ===== */
@media (max-width: 360px) {
    html {
        font-size: 13px;
    }

    .secao-01 {
        padding: 0.8rem;
        gap: 1rem;
    }

    .logo-escrita {
        max-width: 120px;
    }

    .title-secion6 {
        font-size: 2rem;
    }

    .subtitle-secion6 {
        font-size: 0.85rem;
    }

    .form-suporte {
        padding: 1rem;
    }

    .form-suporte input[type="email"],
    .form-suporte textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .form-suporte textarea {
        min-height: 100px;
    }

    .btn-ajuda {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .background {
        height: 40vh;
    }
}
