/* Hero */
.hero-contact {
    position: relative;
    background: #000;
    overflow: hidden;
}

.hero-contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/microfone.jpg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 100%;
    z-index: 1;
}

@media (max-aspect-ratio: 1536/1024) {
    .hero-works::before {
        background-size: cover;
    }
}

.hero-contact::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to right,
        #000 0%,
        rgba(0, 0, 0, 0.85) 30%,
        rgba(0, 0, 0, 0.3) 65%,
        transparent 75%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    display: flex;
    flex-direction: column;
}

section {
    padding: 50px 0;
}

.section-tag {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Seção de Contato */
.contact-section{
    background: var(--background);
}

.contact-grid{
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info h2 {
    margin-bottom: 35px;
    color: var(--primary);
}

.contact-card{
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: var(--card);
    border: 1px solid rgba(255,255,255,.05);
    transition: .3s;
}

.contact-card:hover{
    transform: translateY(-5px);
    border-color: rgba(255,140,43,.35);
    box-shadow: var(--shadow);
}

.contact-card .icon{
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,140,43,.12);
    color: var(--primary);
    font-size: 22px;
    flex-shrink: 0;
}

.contact-card h3{
    font-size: 17px;
    margin-bottom: 4px;
}

.contact-card p{
    color: var(--text-light);
    font-size: 15px;
}

.contact-card .fa-chevron-right{
    margin-left: auto;
    color: #666;
}

/* Formulário */
form {
    display: flex;
    flex-direction: column;
}

.contact-form{
    background: var(--card);
    border-radius: 22px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,.05);
    box-shadow: var(--shadow);
}

.contact-form h2{
    margin-bottom: 30px;
    color: var(--primary);
}

.row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.field{
    margin-bottom: 10px;
}

.field input, 
.field textarea{
    width: 100%;
    background: #111;
    color: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 20px;
    transition: .25s;
}

.field textarea{
    resize: vertical;
    min-height: 190px;
}

.field input::placeholder,
.field textarea::placeholder{
    color: #888;
}

.field input:focus,
.field textarea:focus{
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255,140,43,.08);
}

.form-info{
    margin-top: 18px;
    color: #888;
    font-size: 14px;
}

/* Responsividade */
@media(max-width:768px){
    .contact-grid {
        display: flex;
        flex-direction: column;
    }

    .contact-info {
        width: 80vw;
    }

    .contact-form {
        width: 80vw;
    }
    
    .row {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
}