﻿:root {
    --color-bg-dark: #000000;
    --color-bg-medium: #1a1a1a;
    --color-text-light: #ffffff;
    --color-border-subtle: #333333;
    --color-accent-blue: #007bff; 
}

.contact-section-columns {
    display: flex;
    flex-wrap: wrap; 
    background: var(--color-bg-dark);
    color: var(--color-text-light);
    min-height: 85vh;
}

/* Estilos para ambas columnas */
.column {
    padding: 60px;
    box-sizing: border-box;
    width: 100%;
}

@media (min-width: 768px) {
    .column {
        width: 50%; 
    }

    .info-side {
       
        background-color: var(--color-bg-medium);
        border-left: 1px solid var(--color-border-subtle);
    }
}

/* ESTILOS DEL FORMULARIO */

.form-side h3, .info-side h4 {
    color: var(--color-text-light);
    text-transform: uppercase;
    border-bottom: 2px solid var(--color-border-subtle);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 0.9em;
    color: #cccccc; 
    text-transform: uppercase;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    background: var(--color-bg-medium); 
    border: 1px solid var(--color-border-subtle);
    color: var(--color-text-light);
    font-size: 1em;
    box-sizing: border-box; 
    margin-bottom: 10px;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--color-accent-blue);
    outline: none;
}

/* ESTILOS DEL BOTÓN */
.btn-submit {
    background-color: var(--color-accent-blue);
    color: var(--color-text-light);
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1em;
    text-transform: uppercase;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #0056b3;
}

/* ESTILOS DEL MAPA */

.map-container {
    margin-top: 20px;
    margin-bottom: 40px;
    height: 350px; 
    border: 2px solid var(--color-accent-blue);
    overflow: hidden;
}

.map-container iframe, .map-placeholder {
    width: 100%;
    height: 100%;
    border: none;
}

.map-placeholder {
    background-color: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    color: #666666;
}