* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Manrope', sans-serif;
}

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;
 
}

.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: black;
    margin: 1rem 0;
}

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

.typewriter::after {
    content: '|';
    background-color: transparent;
    animation: blink 0.7s infinite;
    color: white;
    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: black;
    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: #9B7FDB;
    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"], .form-suporte input[type="number"] {
    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: black;
font-family: 'Manrope', sans-serif;
    color: white;
    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;
}


.unidade{
    width: 100%;
    height: auto;
    border-radius: 10px;    
    margin-top: 5%;
}

/* ===== ESPAÇO FOOTER ===== */
.espaco-footer {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== BACKGROUND ===== */



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

.text-footer {
    font-size: 0.875rem;
    color: black;
    font-family: 'Manrope', sans-serif;
    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 {
 
        padding: 1rem;
        gap: 1.2rem;
    }

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

    .title-secion6 {
        font-size: 2.5rem;
        color: black;
    }

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

    .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: 5%;
    }

    .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;
    }
}
