/**
 * Contact Page V2 - Clean White Design
 * 
 * Design: Modern white hero matching FAQ/Pricing pages
 * Colors: Orange #FF914D, Dark Navy #121E35
 */

/* ==========================================================================
   CONTACT PAGE BASE
   ========================================================================== */

.contact-page {
    background: #ffffff;
    min-height: 100vh;
}

/* ==========================================================================
   HERO SECTION - White Clean Design
   ========================================================================== */

.contact-hero-white {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle pattern background */
.contact-hero-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 145, 77, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(23, 70, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.contact-hero-white .hero-content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-hero-white .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-hero-white .badge-icon {
    font-size: 1.2rem;
}

.contact-hero-white .hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2d3436;
    margin: 0 0 20px;
    line-height: 1.2;
}

.contact-hero-white .title-highlight {
    display: block;
    color: #FF914D;
}

.contact-hero-white .hero-subtitle {
    font-size: 1.2rem;
    color: #636e72;
    line-height: 1.6;
    margin: 0 0 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-hero-white .hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.contact-hero-white .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #2d3436;
}

.contact-hero-white .feature-icon {
    font-size: 1.2rem;
}

/* ==========================================================================
   CONTACT METHODS SECTION
   ========================================================================== */

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.contact-method-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: #FF914D;
}

.contact-method-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-method-card h3 {
    font-size: 1.3rem;
    color: #2d3436;
    margin-bottom: 15px;
}

.contact-method-card p {
    color: #636e72;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.contact-method-card .btn-contact {
    display: inline-block;
    padding: 12px 30px;
    background: #FF914D;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-method-card .btn-contact:hover {
    background: #ff7a2e;
    transform: scale(1.05);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 768px) {
    .contact-hero-white {
        padding: 105px 20px 40px; /* Aumentado padding top para mobile */
    }

    .contact-hero-white .hero-title {
        font-size: 2.2rem;
    }

    .contact-hero-white .hero-subtitle {
        font-size: 1rem;
    }

    .contact-hero-white .hero-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
