/* ==========================================
   Contact Page - Estilos Específicos
   ========================================== */

/* ==========================================
   Contact Hero
   ========================================== */
.contact-hero {
    margin-top: 80px;
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/contact-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.contact-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 700px;
    text-align: center;
}

.contact-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-breadcrumb a {
    font-size: 13px;
    font-weight: 400;
    color: #CCCCCC;
    transition: color 0.3s ease;
}

.contact-breadcrumb a:hover {
    color: #FFFFFF;
}

.contact-breadcrumb span {
    font-size: 13px;
    font-weight: 400;
    color: #666666;
}

.contact-breadcrumb .breadcrumb-current {
    font-weight: 500;
    color: #FFFFFF;
}

.contact-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.1;
}

.contact-hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #CCCCCC;
    line-height: 1.6;
}

/* ==========================================
   Contact Section
   ========================================== */
.contact-section {
    background-color: #FFFFFF;
    padding: 80px;
}

.contact-container {
    display: flex;
    gap: 48px;
    max-width: 1280px;
    margin: 0 auto;
}

/* ==========================================
   Contact Form
   ========================================== */
.contact-form-wrapper {
    flex: 1;
    background-color: #FAFAFA;
    border-radius: 16px;
    padding: 48px;
}

.contact-form-title {
    font-size: 28px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.contact-form-desc {
    font-size: 15px;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #1A1A1A;
    background-color: #FFFFFF;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #AAAAAA;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #0D6E6E;
    box-shadow: 0 0 0 3px rgba(13, 110, 110, 0.1);
}

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

.contact-submit-btn {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 10px;
    background-color: #0D6E6E;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-submit-btn:hover {
    background-color: #0A5858;
    transform: translateY(-2px);
}

.contact-submit-btn:active {
    transform: translateY(0);
}

/* ==========================================
   Contact Info
   ========================================== */
.contact-info-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-title {
    font-size: 28px;
    font-weight: 700;
    color: #1A1A1A;
}

.contact-info-desc {
    font-size: 15px;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    margin-top: -16px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background-color: #FAFAFA;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background-color: rgba(13, 110, 110, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon svg {
    width: 20px;
    height: 20px;
    color: #0D6E6E;
}

.contact-info-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-info-label {
    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
}

.contact-info-value {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 1.5;
}

.contact-info-value a {
    color: #0D6E6E;
    transition: color 0.3s ease;
}

.contact-info-value a:hover {
    color: #0A5858;
}

/* ==========================================
   Map Section
   ========================================== */
.contact-map-section {
    background-color: #FAFAFA;
    padding: 0 80px 80px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.contact-map-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    color: #0D6E6E;
    letter-spacing: 3px;
}

.contact-map-title {
    font-size: 32px;
    font-weight: 700;
    color: #1A1A1A;
    text-align: center;
}

.contact-map-wrapper {
    width: 100%;
    max-width: 1280px;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #E5E5E5;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================
   Responsive - Tablet (max 1024px)
   ========================================== */
@media (max-width: 1024px) {
    .contact-hero {
        height: 400px;
    }

    .contact-hero-title {
        font-size: 40px;
    }

    .contact-hero-subtitle {
        font-size: 18px;
    }

    .contact-section {
        padding: 60px 40px;
    }

    .contact-container {
        gap: 32px;
    }

    .contact-form-wrapper {
        padding: 36px;
    }

    .contact-map-section {
        padding: 0 40px 60px 40px;
    }

    .contact-map-wrapper {
        height: 350px;
    }
}

/* ==========================================
   Responsive - Mobile (max 768px)
   ========================================== */
@media (max-width: 768px) {
    .contact-hero {
        margin-top: 70px;
        height: 360px;
        padding: 0 24px;
    }

    .contact-hero-title {
        font-size: 32px;
    }

    .contact-hero-subtitle {
        font-size: 16px;
    }

    .contact-section {
        padding: 48px 24px;
    }

    .contact-container {
        flex-direction: column;
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 28px;
    }

    .contact-form-title {
        font-size: 24px;
    }

    .contact-info-title {
        font-size: 24px;
    }

    .contact-map-section {
        padding: 0 24px 48px 24px;
    }

    .contact-map-title {
        font-size: 26px;
    }

    .contact-map-wrapper {
        height: 300px;
        border-radius: 12px;
    }
}

/* ==========================================
   Responsive - Small Mobile (max 480px)
   ========================================== */
@media (max-width: 480px) {
    .contact-hero {
        height: 320px;
        padding: 0 16px;
    }

    .contact-hero-title {
        font-size: 28px;
    }

    .contact-hero-subtitle {
        font-size: 15px;
    }

    .contact-section {
        padding: 40px 16px;
    }

    .contact-form-wrapper {
        padding: 24px;
        border-radius: 12px;
    }

    .contact-form-title {
        font-size: 22px;
    }

    .contact-info-title {
        font-size: 22px;
    }

    .contact-info-card {
        padding: 16px;
    }

    .contact-map-section {
        padding: 0 16px 40px 16px;
        gap: 24px;
    }

    .contact-map-title {
        font-size: 22px;
    }

    .contact-map-wrapper {
        height: 250px;
    }
}
