/* ==========================================
   PÁGINA DE CONTATO
   ========================================== */

/* Hero Section */
.page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00C247 0%, #00a03a 100%);
    margin-top: 120px;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 3rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-content .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
}

.hero-content .breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-content .breadcrumb a:hover {
    opacity: 0.8;
}

.hero-content .breadcrumb .separator {
    color: rgba(255, 255, 255, 0.7);
}

.hero-content .breadcrumb .current {
    color: #fff;
    font-weight: 600;
}

/* Contato Section */
.contato-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
}

/* Formulário */
.contato-form-wrapper {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-header {
    margin-bottom: 2rem;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 1rem;
    color: #6c757d;
}

/* Alerts */
.alert {
    padding: 1rem 1.25rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.alert i {
    font-size: 1.25rem;
}

.alert-success {
    background: rgba(0, 194, 71, 0.1);
    color: #00a03a;
    border: 1px solid rgba(0, 194, 71, 0.2);
}

.alert-error {
    background: rgba(220, 53, 69, 0.1);
    color: #c82333;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Form Styles */
.contato-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00C247;
    box-shadow: 0 0 0 4px rgba(0, 194, 71, 0.1);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23495057' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* Info Wrapper */
.contato-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Info Card */
.info-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-title i {
    color: #00C247;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1.25rem;
}

.info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 194, 71, 0.1);
    border-radius: 12px;
}

.info-icon i {
    font-size: 1.25rem;
    color: #00C247;
}

.info-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.25rem;
}

.info-content p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
}

.info-content a {
    color: #00C247;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #00a03a;
}

/* WhatsApp Card */
.whatsapp-card {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    color: #fff;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.whatsapp-icon i {
    font-size: 2.5rem;
}

.whatsapp-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.whatsapp-card p {
    font-size: 0.95rem;
    opacity: 0.95;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-whatsapp {
    background: #fff;
    color: #25D366;
    font-weight: 600;
}

.btn-whatsapp:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
}

/* Social Card */
.social-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.social-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.social-btn i {
    font-size: 1.25rem;
}

.social-btn.facebook {
    background: #1877f2;
    color: #fff;
}

.social-btn.facebook:hover {
    background: #145dbf;
    transform: translateY(-2px);
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
}

.social-btn.instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(188, 24, 136, 0.4);
}

.social-btn.linkedin {
    background: #0077b5;
    color: #fff;
}

.social-btn.linkedin:hover {
    background: #005885;
    transform: translateY(-2px);
}

/* Mapa Section */
.mapa-section {
    margin-top: 0;
}

.mapa-container {
    width: 100%;
    height: 450px;
}

.mapa-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Responsividade */
@media (max-width: 1200px) {
    .contato-grid {
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .page-hero {
        margin-top: 100px;
        min-height: 350px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .contato-grid {
        grid-template-columns: 1fr;
    }
    
    .contato-info-wrapper {
        order: -1;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 300px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .contato-section {
        padding: 3rem 0;
    }
    
    .contato-form-wrapper,
    .info-card,
    .whatsapp-card,
    .social-card {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .mapa-container {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .page-hero {
        min-height: 250px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-content .breadcrumb {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .contato-form-wrapper,
    .info-card,
    .whatsapp-card,
    .social-card {
        padding: 1.5rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .info-title {
        font-size: 1.25rem;
    }
    
    .mapa-container {
        height: 300px;
    }
}