/* ============================================ */
/* CONTACTO PAGE - Migrado de WP Contact-us.html */
/* ============================================ */

/* ---- HERO SECTION ---- */
.contacto-hero-section {
    background-color: transparent;
    background-image: linear-gradient(94deg, #fff6da 0%, #f2c11c 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    margin: 0;
}

/* Elementor wave shape - base */
.contacto-elementor-shape {
    direction: ltr;
    left: 0;
    line-height: 0;
    overflow: hidden;
    position: absolute;
    width: 100%;
}

.contacto-elementor-shape-bottom {
    bottom: -1px;
}

.contacto-elementor-shape[data-negative="false"].contacto-elementor-shape-bottom,
.contacto-elementor-shape[data-negative="true"].contacto-elementor-shape-top {
    transform: rotate(180deg);
}

.contacto-hero-section .contacto-elementor-shape-bottom {
    bottom: -1px;
    direction: ltr;
    left: 0;
    line-height: 0;
    overflow: hidden;
    position: absolute;
    width: 100%;
}

.contacto-hero-section .contacto-elementor-shape-bottom svg {
    display: block;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
    width: calc(237% + 1.3px);
    height: 100px;
}

.contacto-hero-section .contacto-elementor-shape-fill {
    fill: #ffffff;
}

/* ---- HERO CONTAINER ---- */
.contacto-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contacto-hero-container h1 {
    font-family: "Outfit", sans-serif;
    font-size: 48px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.2;
}

.contacto-hero-description {
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    color: #111111;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

/* ---- FORM SECTION ---- */
.contacto-form-section {
    background: #ffffff;
    padding: 0;
    margin: 40px 0 0 0;
}

.contacto-form-container {
    max-width: none;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    width: 100%;
}

/* ---- FORM COLUMN (left) ---- */
.contacto-form-column {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 40px;
}

.contacto-form-column .logo {
    width: 120px;
    height: auto;
    margin-bottom: 30px;
}

.contacto-form-column h2 {
    font-family: "Outfit", sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 30px;
}

/* ---- FORM ---- */
.contacto-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contacto-form-field {
    font-family: "Outfit", sans-serif;
    padding: 15px 20px;
    border: 2px solid #000000;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contacto-form-field:focus {
    outline: none;
    border-color: #ffcc1e;
}

.contacto-form-field::placeholder {
    color: #999999;
}

textarea.contacto-form-field {
    resize: vertical;
    min-height: 120px;
}

/* ---- SUBMIT BUTTON ---- */
.contacto-submit-btn {
    font-family: "Outfit", sans-serif;
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contacto-submit-btn:hover {
    background: #333333;
    transform: translateY(-2px);
}

/* ---- IMAGE COLUMN (right) ---- */
.contacto-image-column {
    background-color: transparent;
    background-image: linear-gradient(94deg, #fff6da 0%, #f2c11c 100%);
    border-radius: 0;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 0;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contacto-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 15px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .contacto-hero-container h1 {
        font-size: 36px;
    }

    .contacto-hero-description {
        font-size: 16px;
    }

    .contacto-form-container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contacto-form-column {
        padding: 30px 20px;
        margin: 20px;
    }

    .contacto-image-column {
        height: 50vh;
        border-radius: 0;
        margin: 0;
    }

    .contacto-form-column h2 {
        font-size: 28px;
    }
}
