* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #e0e0e0;
            line-height: 1.6;
     
        } */

.contato--section {
    padding: 60px 20px;
    min-height: 100vh;
    background-color: hsl(0, 0%, 4.5%);
}

.contato--container {
    max-width: 1200px;
    margin: 0 auto;
}

.contato--header {
    text-align: center;
    margin-bottom: 50px;
}

.contato--title {
    font-size: 2.3rem;
    color: #f4c430;
    font-weight: 700;
    margin-bottom: 15px;
}

.contato--subtitle {
    font-size: 1.1rem;
    color: #b0b0b0;
}

/* Seção da fachada - vertical 3:4 em cima do mapa */
.contato--fachada {
    border-radius: 10px;
    overflow: hidden;
    background: #333;
    width: 100%;
    margin-bottom: 20px;
}

.contato--fachada-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* MODIFICAÇÃO PRINCIPAL: Ajuste da estrutura de grid */
.contato--content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

/* NOVO: Container para garantir altura igual */
.contato--info-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contato--info {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contato--info-title {
    font-size: 1.4rem;
    color: #f4c430;
    margin-bottom: 25px;
    font-weight: 600;
}

.contato--info-item {
    margin-bottom: 25px;
}

.contato--info-item:last-child {
    margin-bottom: 0;
}

.contato--info-label {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #f4c430;
    font-weight: 600;
    margin-bottom: 8px;
}

.contato--info-icon {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    fill: #f4c430;
}

.contato--info-text {
    color: #d0d0d0;
    line-height: 1.6;
}

.contato--location-title {
    font-size: 1.4rem;
    color: #f4c430;
    margin-bottom: 20px;
    font-weight: 600;
}

.contato--map {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
}

.contato--map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
}

/* NOVO: Container para o formulário com altura igual */
.contato--form-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contato--form {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contato--form-title {
    font-size: 1.4rem;
    color: #f4c430;
    margin-bottom: 25px;
    font-weight: 600;
}

.contato--form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.contato--form-group {
    margin-bottom: 15px;
}
.qtd_pessoas {
  margin-bottom: 15px;
}

.contato--form-input,
.contato--form-select,
.contato--form-textarea {
    width: 100%;
    padding: 12px 15px;
    background: #333;
    border: 1px solid #444;
    border-radius: 8px;
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    font-family: inherit;
}

.contato--form-input:focus,
.contato--form-select:focus,
.contato--form-textarea:focus {
    outline: none;
    border-color: #f4c430;
    box-shadow: 0 0 0 2px rgba(244, 196, 48, 0.3);
}

.contato--form-input::placeholder,
.contato--form-textarea::placeholder {
    color: #999;
}

.contato--form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contato--form-select {
    cursor: pointer;
}

.contato--form-select option {
    background: #333;
    color: #fff;
}

.contato--form-button {
    width: 100%;
    padding: 15px;
    background: #f4c430;
    border: none;
    border-radius: 8px;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
    transition: all 0.2s ease;
}

.contato--form-button:hover {
    background: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* Responsivo */
@media (max-width: 768px) {
    .contato--section {
        padding: 40px 15px;
    }

    .contato--title {
        font-size: 1.8rem;
    }

    .contato--fachada-image {
        max-height: 250px;
    }

    .contato--fachada {
        height: 250px;
    }

    .contato--fachada {
        height: 300px;
    }

    .contato--content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contato--info,
    .contato--form {
        padding: 25px;
    }

    .contato--form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .contato--map {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contato--title {
        font-size: 1.6rem;
    }

    .contato--fachada-image {
        max-height: 300px;
    }

    .contato--info,
    .contato--form {
        padding: 20px;
    }

    .contato--info-title,
    .contato--form-title,
    .contato--location-title {
        font-size: 1.2rem;
    }

    .contato--map {
        height: 250px;
    }
}