
/* --- CONTACTO PAGE SPECIFIC STYLES --- */

/* Global Reset for this page to remove gaps */
main {
    padding-bottom: 0;
}
main section {
    margin-bottom: 0 !important;
    border-radius: 0 !important;
    padding: 0;
}

/* Hero Section */
.contacto-hero {
    position: relative;
    height: 48vh;
    min-height: 350px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #000;
    margin: 0;
    padding: 0;
}

.contacto-hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
    object-fit: cover;
    display: block;
}

.contacto-hero .hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.contacto-hero h2 {
    font-size: 3em;
    font-weight: normal;
    margin-bottom: 0px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.contacto-hero p {
    font-size: 1.2em;
    font-weight: 300;
    font-style: italic;
    margin-top: -5px;
}

.contacto-hero .yellow-separator img {
    height: 90px;
    margin-top: 20px;
}

/* Contact Section */
.contacto-section {
    background-color: #fff;
    padding: 60px 5% !important;
    text-align: center;
    border-top: 4px solid rgb(232, 223, 56);
}

.contacto-title {
    font-size: 2em;
    color: rgb(232, 223, 56);
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.contacto-intro {
    color: #555;
    font-size: 0.95em;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.contacto-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

/* Contact Info Column */
.contacto-info {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.info-item > img {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 0.95em;
    color: #333;
    margin: 0 0 2px 0;
    text-transform: uppercase;
}

.info-item p {
    font-size: 0.9em;
    color: #555;
    margin: 0;
}

.info-item a {
    color: #555;
    text-decoration: none;
}

.info-item a:hover {
    color: rgb(232, 223, 56);
}

.btn-incidencias-contacto {
    display: inline-block;
    background: rgb(232, 223, 56);
    color: #111;
    text-decoration: none;
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.2s, transform 0.2s;
    margin-top: 4px;
}
.btn-incidencias-contacto:hover {
    background: rgb(212, 203, 36);
    transform: translateY(-1px);
}

/* Form Column */
.contacto-section form {
    flex: 1.5;
    min-width: 300px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: transparent;
    padding: 0;
    border: none;
}

.contacto-section .form-row {
    display: flex;
    gap: 15px;
}

.contacto-section .form-row input {
    flex: 1;
}

.contacto-section input[type="text"],
.contacto-section input[type="email"],
.contacto-section textarea {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 2px;
    background-color: rgb(232, 223, 56);
    color: #333;
    font-family: 'CenturyGothic', Arial, sans-serif;
    font-size: 0.95em;
}

.contacto-section input::placeholder,
.contacto-section textarea::placeholder {
    color: #888;
}

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

.contacto-section .captcha-container {
    display: flex;
    justify-content: center;
}

.contacto-section .form-footer {
    display: flex;
    justify-content: center;
}

.contacto-section button[type="submit"] {
    background-color: rgb(232, 223, 56);
    color: #333;
    padding: 14px 35px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    font-family: 'CenturyGothic', Arial, sans-serif;
    transition: background-color 0.3s ease;
}

.contacto-section button[type="submit"]:hover {
    background-color: #333;
    color: #fff;
}

/* Imagenes Madrid y Galicia */
.contacto-imagenes {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 30px 10%;
    background: #fff;
    line-height: 0;
    border-bottom: 4px solid rgb(232, 223, 56);
}

.contacto-imagenes img {
    width: 50%;
    max-width: 330px;
    height: 225px;
    object-fit: contain;
    display: block;
}

/* Responsive — Tablet */
@media (max-width: 1024px) {
    .contacto-hero h2 {
        font-size: 2.5em;
    }

    .contacto-content {
        gap: 30px;
    }
}

/* Responsive — Mobile */
@media (max-width: 768px) {
    .contacto-hero h2 {
        font-size: 2em;
    }

    .contacto-content {
        flex-direction: column;
        align-items: center;
    }

    .contacto-info {
        max-width: 100%;
        text-align: center;
    }

    .info-item {
        justify-content: center;
    }

    .contacto-section form {
        max-width: 100%;
    }

    .contacto-section .form-row {
        flex-direction: column;
    }

    .contacto-imagenes img {
        max-width: 240px;
        height: 180px;
    }
}
