@charset "UTF-8";

body{
    background-color: rgb(34,34,34);
    color: white;
    font-family: poppinsregular;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

#title{
    flex-direction: column;
    line-height: 10px;
}

li{
    display: inline-block;
    margin: 20px;
}

a{
    color: white;
}

a:hover{
    color: rgb(132, 14, 201);
    transition: 0.3 all;
}

#botao{
    border: 2px solid rgb(132, 14, 201);
    padding: 10px;
    border-radius: 20px;
}

#botao:hover{
        background-color: rgb(132, 14, 201);
        color: white;
}

h1{
    font-weight: 200;
}

main{
    display: flex;
    flex-direction: row;
    margin-top: 50px;
}

h2{
    font-size: 56px;
    line-height: 10px;
    font-family: 'poppinsmedium';
}

span{
    color: rgb(132, 14, 201);
}

p{
    line-height: 20px;
    max-width: 500px;
    font-family: poppinslight;
}

img{
    width: 620px; 
}

form{
    display: flex;
    flex-direction: column;
    width: 70%;
}

form [type="submit"]{
    height: 50px;
    width: 50%;
    background-color: rgb(132, 14, 201);
    color: white;
    font-weight: bold;
}

form [type="submit"]:hover{
    cursor: pointer;
}

input{
    margin-top: 20px;
    height: 20px;
    padding: 15px;
    border-radius: 20px;
    border: none;
    font-size: 15px;
}

/* ===== SEÇÕES NOVAS ===== */

section {
    padding: 90px 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-size: 2.4rem;
    line-height: 1.2;
    margin: 8px 0 16px;
}

.section-header p {
    max-width: 560px;
    margin: 0 auto;
    color: rgba(255,255,255,.65);
}

.section-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgb(132, 14, 201);
}

/* ── Serviços ── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 32px 28px;
    transition: border-color .3s, transform .3s;
}

.card:hover {
    border-color: rgb(132, 14, 201);
    transform: translateY(-4px);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255,255,255,.65);
    max-width: none;
}

/* ── Sobre ── */
#sobre {
    background: rgba(132, 14, 201, .06);
    border-radius: 24px;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.sobre-texto h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin: 8px 0 20px;
}

.sobre-texto p {
    max-width: none;
    color: rgba(255,255,255,.75);
    line-height: 1.7;
    font-size: 0.95rem;
}

.sobre-numeros {
    display: flex;
    gap: 32px;
    margin-top: 36px;
}

.numero-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.numero-item strong {
    font-size: 1.6rem;
    font-weight: 700;
    color: rgb(132, 14, 201);
}

.numero-item span {
    color: rgba(255,255,255,.6);
    font-size: 0.82rem;
}

.sobre-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sobre-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: border-color .3s;
}

.sobre-card:hover {
    border-color: rgb(132, 14, 201);
}

.sobre-card-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.sobre-card strong {
    display: block;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 4px;
}

.sobre-card span {
    color: rgba(255,255,255,.55);
    font-size: 0.82rem;
}

/* ── Contato ── */
.contato-wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 56px;
    align-items: start;
}

.form-contato {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.campo-grupo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-contato input,
.form-contato textarea {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 10px;
    padding: 14px 18px;
    color: #fff;
    font-size: 0.9rem;
    font-family: poppinslight;
    margin-top: 0;
    height: auto;
    width: 100%;
    outline: none;
    transition: border-color .25s;
}

.form-contato input:focus,
.form-contato textarea:focus {
    border-color: rgb(132, 14, 201);
}

.form-contato input::placeholder,
.form-contato textarea::placeholder {
    color: rgba(255,255,255,.4);
}

.form-contato textarea {
    resize: vertical;
    min-height: 130px;
}

.btn-contato {
    background: rgb(132, 14, 201);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    width: fit-content;
    transition: opacity .25s, transform .2s;
}

.btn-contato:hover {
    opacity: .85;
    transform: translateY(-2px);
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
    min-width: 240px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
    color: white;
}

.info-item div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-item strong {
    font-size: 0.95rem;
    color: #fff;
}

.info-item span {
    color: rgba(255,255,255,.55);
    font-size: 0.85rem;
}

/* ── Footer ── */
footer {
    background: rgba(0,0,0,.3);
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 40px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.footer-nav {
    display: flex;
    gap: 24px;
}

.footer-nav a {
    font-size: 0.85rem;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .2s;
}

.footer-nav a:hover {
    color: rgb(132, 14, 201);
}

/* ── Responsivo mobile ── */
@media (max-width: 768px) {
    .sobre-content,
    .contato-wrapper {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .campo-grupo {
        grid-template-columns: 1fr;
    }

    .sobre-numeros {
        flex-wrap: wrap;
        gap: 20px;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }
}
