/* ============================================
   Contact Page - KK Tec
   Estilo clean e minimalista
   ============================================ */

/* Contact Hero */
.contact-hero {
    background: #f8f9fa;
    padding: 60px 0;
}

.contact-hero h1 {
    font-size: 36px;
    font-weight: 700;
    color: #323232;
    margin-bottom: 16px;
}

.contact-hero p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
}

/* Contact Content Section */
.contact-content-section {
    background: #fff;
    padding: 80px 0;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.contact-info-box {
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.2s ease;
}

.contact-info-box:hover {
    border-color: #0073aa;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.contact-info-box i {
    font-size: 36px;
    color: #0073aa;
    margin-bottom: 16px;
}

.contact-info-box h3 {
    font-size: 18px;
    font-weight: 600;
    color: #323232;
    margin-bottom: 8px;
}

.contact-info-box p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.contact-info-box a {
    color: #0073aa;
}

.contact-info-box a:hover {
    text-decoration: underline;
}

/* Contact Form Section */
.contact-form-section {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #323232;
    margin-bottom: 32px;
    text-align: center;
}

/* Form Grid */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Form Group */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #323232;
    margin-bottom: 8px;
}

.form-group label span {
    color: #dc3545;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    color: #323232;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

.form-control::placeholder {
    color: #999;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.form-submit {
    text-align: center;
    margin-top: 32px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: #0073aa;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-submit:hover {
    background: #005a87;
}

.btn-submit i {
    font-size: 18px;
}

/* Horário de Atendimento */
.contact-hours {
    max-width: 700px;
    margin: 60px auto 0;
    padding: 32px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #eee;
    text-align: center;
}

.contact-hours h3 {
    font-size: 20px;
    font-weight: 600;
    color: #323232;
    margin-bottom: 16px;
}

.contact-hours p {
    color: #666;
    font-size: 15px;
    margin-bottom: 8px;
}

.contact-hours p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 48px 0;
    }

    .contact-hero h1 {
        font-size: 28px;
    }

    .contact-hero p {
        font-size: 16px;
    }

    .contact-content-section {
        padding: 48px 0;
    }

    .contact-info-grid {
        margin-bottom: 40px;
    }

    .contact-info-box {
        padding: 24px 16px;
    }

    .contact-info-box i {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-section h2 {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .btn-submit {
        width: 100%;
        padding: 12px 24px;
    }

    .contact-hours {
        padding: 24px 20px;
        margin-top: 40px;
    }

    .contact-hours h3 {
        font-size: 18px;
    }
}
