/* Página Contato - Estilos Específicos */

/* Hero Contato */
.hero-contato {
    background: linear-gradient(135deg, #70BE4F 0%, #5da840 50%, #32B5AB 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 80px;
    text-align: center;
}

.hero-contato h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-contato-subtitle {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Contact Methods */
.contact-methods {
    padding: 80px 0;
    background: var(--bg-white);
}

.contact-methods h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.method-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.method-card.primary {
    background: linear-gradient(135deg, #70BE4F 0%, #5da840 100%);
    color: white;
    transform: scale(1.05);
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.method-card.primary:hover {
    transform: scale(1.05) translateY(-5px);
}

.method-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: invert(65%) sepia(48%) saturate(456%) hue-rotate(56deg) brightness(95%) contrast(88%);
}

.method-card.primary .method-icon {
    filter: brightness(0) invert(1);
}

.method-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.method-card.primary h3 {
    color: white;
}

.method-info {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.method-card.primary .method-info {
    color: white;
    font-size: 24px;
}

.method-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--text-light);
}

.method-card.primary .method-desc {
    color: rgba(255, 255, 255, 0.9);
}

.cta-button.secondary {
    background: var(--secondary-color);
    text-decoration: none;
    display: inline-flex;
}

.cta-button.secondary:hover {
    background: #2a9d8f;
}

/* Schedule Section */
.schedule-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.schedule-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.schedule-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.schedule-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.schedule-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: invert(65%) sepia(48%) saturate(456%) hue-rotate(56deg) brightness(95%) contrast(88%);
}

.schedule-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.schedule-list {
    list-style: none;
    margin-bottom: 20px;
}

.schedule-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 16px;
    color: var(--text-dark);
}

.schedule-list li:last-child {
    border-bottom: none;
}

.schedule-list strong {
    color: var(--primary-color);
}

.schedule-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 15px;
}

/* Location Section */
.location-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.location-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.location-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.location-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    filter: invert(65%) sepia(48%) saturate(456%) hue-rotate(56deg) brightness(95%) contrast(88%);
}

.location-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.location-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.location-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.location-card a:hover {
    text-decoration: underline;
}

/* FAQ Contato */
.faq-contato {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-contato h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-contato {
        padding: 100px 0 60px;
    }
    
    .hero-contato h1 {
        font-size: 36px;
    }
    
    .hero-contato-subtitle {
        font-size: 18px;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
    }
    
    .method-card.primary {
        transform: scale(1);
    }
    
    .schedule-content {
        grid-template-columns: 1fr;
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-contato h1 {
        font-size: 32px;
    }
    
    .contact-methods h2,
    .schedule-section h2,
    .location-section h2,
    .faq-contato h2 {
        font-size: 28px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .methods-grid {
        grid-template-columns: 1fr;
    }
    
    .method-card.primary {
        transform: scale(1);
    }
}
