/* ========================================
   CONTATO PAGE STYLES - Promofy
   Estilos específicos da página de contato
   ======================================== */

/* ========================================
   BANNER SECTION
   ======================================== */

.banner-contato {
    width: 100%;
    overflow: hidden;
}

.banner-contato .container-fluid {
    padding: 0;
}

.banner-contato .banner-image {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   CONTACT INFO SECTION
   ======================================== */

.contact-info-section {
    padding: 40px 0 0px;
    background-color: #fff;
}

.contact-info-section .row {
    max-width: 900px;
}

.info-title {
    color: #282828;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 20px;
    padding-left: 10px;
    border-left: 3px solid #282828;
}

.info-title strong {
    font-weight: 700;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 18px;
    background: white;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.10);
    border-radius: 10px;
    margin-bottom: 12px;
    max-width: 380px;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.contact-card:hover, a.social-card:hover {
    border-color: #282828;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-text {
    flex: 1;
}

.contact-text a {
    color: #282828;
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    line-height: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #000;
}

/* Redes Sociais */
.social-links {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.social-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: white;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.10);
    border-radius: 10px;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.social-card img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

/* ========================================
   DESCRIPTION SECTION
   ======================================== */

.contact-description-section {
    padding-top: 40px;
    background-color: #fff;
}

.description-content {
    max-width: 1200px;
}

.description-content p {
    color: #282828;
    font-size: 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 28.80px;
    margin-bottom: 20px;
}

.description-content strong {
    font-weight: 700;
}

/* ========================================
   CONTACT FORM SECTION
   ======================================== */

.contact-form-section {
    padding: 40px 0 60px;
    background-color: #fff;
}

.form-title {
    color: #282828;
    font-size: 28px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    line-height: 33.04px;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 100%;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #727272;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    line-height: 16.52px;
    margin-bottom: 10px;
}

.form-group .form-control {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 2px solid #282828;
    font-size: 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #282828;
    transition: border-color 0.3s ease;
}

.form-group .form-control::placeholder {
    color: #727272;
}

.form-group .form-control:focus {
    outline: none;
    border-color: #000;
}

.form-group textarea.form-control {
    resize: vertical;
    min-height: 141px;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.btn-submit {
    padding: 12px 40px;
    background: transparent;
    border: 2px solid #282828;
    border-radius: 24px;
    color: #282828;
    font-size: 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    line-height: 23.60px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #282828;
    color: #fff;
}

.form-success-message {
    display: none;
    color: #282828;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    line-height: 18.88px;
}

.form-success-message.show {
    display: block;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 768px) {
    .page-main-title {
        font-size: 22px;
        line-height: 26px;
    }

    .info-title {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 15px;
    }

    .contact-card {
        padding: 10px 14px;
        max-width: 100%;
    }

    .contact-icon {
        width: 20px;
        height: 20px;
    }

    .contact-text a {
        font-size: 14px;
        line-height: 18px;
    }

    .social-card {
        width: 42px;
        height: 42px;
    }

    .social-card img {
        width: 22px;
        height: 22px;
    }

    .description-content p {
        font-size: 15px;
        line-height: 22px;
    }

    .form-title {
        font-size: 20px;
        line-height: 26px;
    }

    .form-group .form-control {
        font-size: 15px;
        padding: 10px 14px;
    }

    .btn-submit {
        font-size: 15px;
        padding: 10px 28px;
    }

    .form-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .form-success-message {
        font-size: 14px;
    }
    .contact-description-section {
        padding: 0px 0;
        background-color: #fff;
    }
    .contact-info-section {
        padding: 20px 0 20px;
        background-color: #fff;
    }
    .contact-form-section {
        padding: 30px 0 80px;
        background-color: #fff;
    }
}
