/* contact.css - Estilos específicos de contact.html */

/* Hero fixed override for contact */
.contact-hero-section-fixed {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* FAQ overrides */
.faq-item p {
    display: block !important;
    color: #aaa;
    line-height: 1.6;
}

.faq-item h5 {
    cursor: default !important;
}

.faq-icon {
    color: #888;
    margin-right: 8px;
}

/* Contact channels spacing */
.contact-channels--spaced {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Form section utilities */
.form-response-time {
    color: #ccc;
}

.form-response-time strong {
    color: #fff;
}

/* Security notice */
.security-notice {
    background: rgba(255, 152, 0, 0.05);
    border-left: 3px solid #ff9800;
    border-radius: 4px;
}

.security-notice p {
    margin: 0;
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
}

.security-notice-icon {
    color: #ff9800;
    margin-right: 8px;
}

.security-notice strong {
    color: #ff9800;
}

/* Form helper texts & checkbox */
.contact-form .form-text {
    color: #aaa;
    font-size: 0.85rem;
}

.contact-form .form-text i {
    color: #888;
}

.contact-form .form-check-label {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-form .form-check-label a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
}

.contact-form .form-check-label a:hover {
    color: #ddd;
}

.contact-form .form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.contact-form .form-check-input:checked {
    background-color: #fff;
    border-color: #fff;
}

.contact-form .form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.15);
}

/* FAQ section */
.faq-section--spaced {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 50px;
    padding-top: 100px;
    padding-bottom: 50px;
}

.faq-intro {
    color: #ccc;
    max-width: 700px;
    margin: 0 auto;
}

/* Media kit section */
.media-kit-section--contact {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.8) 100%);
    padding: 50px 0 100px 0;
}

.media-kit-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.media-kit-icon {
    font-size: 2.5rem;
    color: #888;
}

.media-kit-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.media-kit-desc {
    color: #aaa;
    max-width: 600px;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .contact-hero-section-fixed {
        min-height: auto;
        height: auto;
        padding-top: 120px;
        padding-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .contact-channels--spaced {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .faq-section--spaced {
        padding-top: 60px;
        margin-top: 30px;
    }

    .faq-intro {
        font-size: 0.92rem;
    }
}

@media (max-width: 576px) {
    .form-response-time {
        font-size: 0.85rem;
    }

    .security-notice {
        padding: 0.7rem !important;
    }

    .security-notice p {
        font-size: 0.78rem;
        line-height: 1.5;
    }
}
