/* css/contato.css */

.contact-hero {
    position: relative;
    padding: 160px 0 80px;
    background: var(--bg-body);
    overflow: hidden;
    text-align: center;
}
.contact-hero-content {
    position: relative;
    z-index: 2;
}
.contact-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.contact-hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Bolhas / Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    z-index: 1;
}
.blob-cyan {
    width: 400px; height: 400px;
    background: var(--accent);
    top: -50px; right: -50px;
}
.blob-purple {
    width: 400px; height: 400px;
    background: var(--secondary);
    bottom: -100px; left: -100px;
}

/* SEÇÃO DE CONTATO */
.contact-section {
    padding: 60px 0 100px;
    position: relative;
    z-index: 2;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

/* Coluna de Informações */
.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}
.contact-info > p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
}
.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: 0.3s;
}
.info-card:hover {
    border-color: var(--hover);
    transform: translateY(-3px);
}
.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.info-card:nth-child(2) .info-icon { /* WhatsApp */
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}
.info-card:nth-child(3) .info-icon { /* E-mail */
    background: rgba(171, 71, 188, 0.1);
    color: var(--secondary);
}

.info-text h4 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 8px;
    font-weight: 600;
}
.info-text a, .info-text span {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    display: block;
    line-height: 1.5;
}
.info-text a:hover {
    color: var(--accent);
}

/* Coluna de Formulário */
.contact-form-container {
    background: rgba(24, 27, 40, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.contact-form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--text-main);
}
.form-group {
    margin-bottom: 20px;
}
.row-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.input-box label {
    display: block;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}
.input-box input, .input-box textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}
.input-box input:focus, .input-box textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(0,229,255,0.02);
    box-shadow: 0 0 0 4px rgba(0,229,255,0.1);
}
.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    font-weight: 700;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .row-group {
        grid-template-columns: 1fr;
    }
}
