:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-09a72fb *//* --- CONTAINER DO FORMULÁRIO (ISOLADO) --- */
.contato-container {
    background-color: #ffffff;
    width: 100%;
    max-width: 850px;
    margin: 40px auto; /* Centraliza o bloco na página sem quebrar o layout */
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(255, 182, 193, 0.2); 
    display: grid;
    grid-template-columns: 4.5fr 5.5fr;
    overflow: hidden;
    border: 3px solid #fff;
}

/* --- COLUNA ESQUERDA: Informações --- */
.contato-info {
    background-color: #ffdcd4; /* Tom pêssego/rosa pastel bem suave igual ao seu logo */
    color: #6c5b7b; 
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contato-info h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ff8a80; /* Rosa mais escurinho para o título */
    line-height: 1.2;
}

.contato-info p {
    font-size: 14px;
    line-height: 1.5;
    color: #7d6b8d;
    margin-bottom: 20px;
}

.info-detalhes {
    margin: 20px 0;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.6); 
    padding: 10px 12px;
    border-radius: 12px;
}

.info-item i {
    font-size: 16px;
    color: #ff8a80;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Redes Sociais fofas */
.redes-sociais {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.redes-sociais a {
    color: #ffffff;
    background-color: #ffb6c1;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.redes-sociais a:hover {
    background-color: #ff8a80;
    transform: scale(1.1);
}

/* --- COLUNA DIREITA: Formulário --- */
.contato-form {
    padding: 35px;
    background-color: #ffffff;
}

.grupo-input {
    margin-bottom: 16px;
    text-align: left; /* Garante que os textos fiquem alinhados certinho */
}

.grupo-input label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #6c5b7b;
    margin-bottom: 6px;
}

.grupo-input input,
.grupo-input select,
.grupo-input textarea {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #ffe4e1; 
    border-radius: 14px; 
    font-size: 13px;
    color: #51465a;
    background-color: #fdfbfb;
    outline: none;
    transition: all 0.3s ease;
}

.grupo-input input:focus,
.grupo-input select:focus,
.grupo-input textarea:focus {
    border-color: #ffb6c1;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 182, 193, 0.2);
}

.grupo-input textarea {
    resize: none;
}

/* Botão Enviar Rosa Chiclete */
.btn-enviar {
    background-color: #ffb6c1; 
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 16px;
    cursor: pointer;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 182, 193, 0.4);
    margin-top: 10px;
}

.btn-enviar:hover {
    background-color: #ff8a80;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 138, 128, 0.4);
}

/* --- AJUSTE RESPONSIVO PARA CELULAR --- */
@media (max-width: 768px) {
    .contato-container {
        grid-template-columns: 1fr;
        margin: 20px 10px;
    }
    .contato-info, .contato-form {
        padding: 25px;
    }
}/* End custom CSS */