.contacto-container {
    max-width: 1000px;
    margin: auto;
    padding: 40px 20px;
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.contacto-info {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eee;
}
.contacto-info p {
    color: #555;
    margin: 8px 0;
}

.horario {
    margin-top: 15px;
    font-weight: 500;
    color: #e67e22;
}

.mapa iframe {
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

h1 {
    margin-bottom: 30px;
}

.formulario h2 {
    margin-bottom: 15px;
}

/* FORM */
.formulario {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eee;
    max-width: 900px;
}

.formulario form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.formulario input,
.formulario textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #fafafa;
}

.formulario input:focus,
.formulario textarea:focus {
    outline: none;
    border-color: #e67e22;
    background: white;
}
.formulario button {
    background: #e67e22;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 500;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.formulario button:hover {
    background: #d35400;
}

/* 📱 MÓVIL */
@media (max-width: 768px) {
    .contacto-grid {
        grid-template-columns: 1fr;
    }
}

.card-ancho {
    width: 100%;
}