/* CONTATO CSS - SECOOLINDA */

body {
    margin: 0;
    padding: 0;
}

/* ========== PAGE HERO ========== */
.page-hero {
    max-width: 1400px;
    margin: 2rem auto 3rem auto;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #7A0E13 0%, #A32025 100%);
    color: white;
    border-radius: 8px;
    text-align: center;
}

.hero-overlay {
    display: none;
}

.hero-content-wrapper {
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0 0 1rem 0;
}

.page-subtitle {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.95;
}

/* ========== BREADCRUMB ========== */
.breadcrumb-container {
    background: #f9f9f9;
    padding: 1rem 2rem;
}

.breadcrumb {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    background: transparent;
}

.breadcrumb-item {
    font-size: 0.95rem;
}

.breadcrumb-item a {
    color: #7A0E13;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    color: #F05A5C;
}

/* ========== QUICK CONTACT CARDS ========== */
.quick-contact-section {
    background: white;
    padding: 40px 20px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.quick-contacts-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.quick-contact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #F05A5C;
}

.quick-contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(122,14,19,0.15);
}

.qc-icon {
    font-size: 2.5rem;
    color: #F05A5C;
    margin-bottom: 1rem;
}

.quick-contact-card h3 {
    font-size: 1.2rem;
    color: #7A0E13;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.qc-value {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin: 0.5rem 0;
}

.qc-value a {
    color: #F05A5C;
    text-decoration: none;
    transition: all 0.3s ease;
}

.qc-value a:hover {
    text-decoration: underline;
}

.qc-meta {
    font-size: 0.85rem;
    color: #999;
    margin: 0;
}

/* ========== CONTACT FORM SECTION ========== */
.contact-form-section {
    background: white;
    padding: 60px 20px;
}

.form-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 2px solid #7A0E13;
}

.form-title {
    font-size: 1.8rem;
    color: #7A0E13;
    margin-bottom: 2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-row .form-group:only-child {
    grid-column: 1 / -1;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F05A5C;
    box-shadow: 0 0 0 3px rgba(240,90,92,0.1);
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
}

.form-checkbox input {
    width: auto;
    margin: 0;
    cursor: pointer;
}

.btn-submit {
    padding: 14px 32px;
    background: linear-gradient(135deg, #7A0E13 0%, #A32025 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-weight: 600;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ========== CONTACT SIDEBAR ========== */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-box {
    background: linear-gradient(135deg, #f9f9f9 0%, white 100%);
    padding: 1.8rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-left: 4px solid #F05A5C;
}

.info-box h3 {
    font-size: 1.1rem;
    color: #7A0E13;
    margin-bottom: 1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.info-box p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.dept-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dept-list li {
    color: #666;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.dept-list i {
    color: #F05A5C;
    font-size: 0.75rem;
}

.social-box .social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #7A0E13 0%, #A32025 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-links a:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ========== MAP SECTION ========== */
.map-section {
    background: white;
    padding: 60px 0;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========== FAQ SECTION ========== */
.faq-section {
    background: linear-gradient(135deg, #f5f5f5 0%, white 100%);
    padding: 80px 20px;
}

.section-title {
    font-size: 2.5rem;
    color: #7A0E13;
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.section-subtitle {
    text-align: center;
    color: #999;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.faq-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #F05A5C;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.faq-item h4 {
    font-size: 1.1rem;
    color: #7A0E13;
    margin-bottom: 1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.faq-item h4 i {
    color: #F05A5C;
    font-size: 1.3rem;
}

.faq-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .form-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 40px 20px;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .quick-contacts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .contact-form-section {
        padding: 40px 20px;
    }

    .contact-form-card {
        padding: 1.5rem;
    }

    .form-title {
        font-size: 1.4rem;
    }

    .faq-section {
        padding: 50px 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .map-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 30px 15px;
    }

    .page-title {
        font-size: 1.4rem;
    }

    .quick-contacts-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .quick-contact-card {
        padding: 1.5rem;
    }

    .contact-form-card {
        padding: 1rem;
    }

    .form-title {
        font-size: 1.2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .faq-grid {
        gap: 1rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .map-container {
        height: 250px;
    }

    .social-links {
        justify-content: center;
    }

    .btn-submit {
        width: 100%;
        justify-content: center;
    }
}


/* Container Principal */
.contato-container {
    max-width: 1400px;
    margin: 40px auto;
    padding: 20px;
    width: 100%;
}

/* Cabeçalho */
.contato-header {
    text-align: center;
    margin-bottom: 60px;
}

.contato-header h1 {
    font-size: 2.4rem;
    color: #7A0E13;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.contato-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #7A0E13, #F05A5C);
    border-radius: 2px;
}

.contato-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 20px auto 0;
}



