/* Estilo do formulário de contato */
#form-contato {
    flex: 2 1 420px;
    margin: 0;
    padding: 32px 32px 32px 32px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 320px;
    max-width: 600px;
    align-self: stretch;
    justify-content: center;
}

#form-contato h2 {
    text-align: center;
    margin-bottom: 10px;
    color: #2d3e50;
    font-size: 1.5rem;
    font-weight: bold;
}

#form-contato label {
    font-weight: 500;
    color: #2d3e50;
    margin-bottom: 4px;
    font-weight: bold;
}

#form-contato input,
#form-contato textarea {
    padding: 12px 14px;
    border: 1px solid #cfd8dc;
    border-radius: 6px;
    font-size: 1rem;
    background: #f7f9fa;
    transition: border 0.2s;
    width: 100%;
    margin-bottom: 2px;
}

#form-contato input:focus,
#form-contato textarea:focus {
    border-color: #00796b;
    outline: none;
}

#form-contato button {
    background: #FF460A;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 16px 0;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: 700;
    transition: background 0.2s;
    margin-top: 10px;
    width: 100%;
    letter-spacing: 0.5px;
}

#form-contato button:hover {
    background: #00a764;
}

/* Layout de duas colunas para contato */
.contato-container {
    display: flex;
    gap: 48px;
    max-width: 1100px;
    margin: 48px auto;
    align-items: flex-start;
    justify-content: center;
}

.contato-info {
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: #ffffff;
    border-radius: 12px;
    padding: 32px 24px 24px 24px;
    min-width: 280px;
    max-width: 400px;
    align-self: stretch;
}

.contato-info-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 18px;
}

.contato-lista {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
}
.contato-lista li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1rem;
}
.contato-icon {
    width: 38px;
    height: 38px;
    background: #e8f0fe;
    color: #156ee2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-top: 2px;
}
.contato-label {
    font-weight: 600;
    color: #222;
    font-size: 1.05rem;
}
.contato-lista a {
    color: #156ee2;
    text-decoration: none;
    word-break: break-all;
    font-weight: 500;
}
.contato-lista a:hover {
    text-decoration: underline;
}

.contato-dados h3 {
    margin-bottom: 10px;
    color: #00796b;
    font-size: 1.2rem;
}
.contato-dados p {
    margin-bottom: 8px;
    font-size: 1rem;
}
.contato-dados a {
    color: #00796b;
    text-decoration: none;
    word-break: break-all;
}
.contato-dados a:hover {
    text-decoration: underline;
}

.contato-mapa iframe {
    width: 100%;
    min-height: 180px;
    border: 0;
    border-radius: 10px;
    margin-top: 8px;
}
@media (max-width: 900px) {
    .contato-container {
        flex-direction: column;
        gap: 24px;
        max-width: 98vw;
        padding: 0 8px;
    }
    #form-contato, .contato-info {
        max-width: 100%;
        min-width: 0;
        padding: 18px 8px 14px 8px;
        align-self: auto;
    }
}

@media (max-width: 480px) {
    .contato-container {
        gap: 10px;

    }
    #form-contato, .contato-info {
        padding: 8px 2px;
        box-shadow: none;
    }
    .contato-mapa iframe {
        min-height: 100px;
    }
    .contato-info-title {
        font-size: 1.1rem;
    }
    .contato-label {
        font-size: 0.98rem;
    }
}