/* Estilos da Página de Contato */
.contact-page {
    padding-bottom: 4rem;
}

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 4rem;
}

.contact-hero .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-hero .page-description {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Layout de Duas Colunas */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
}

/* Seção do Formulário */
.contact-form-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-form-section h2 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: var(--primary);
}

/* Seção de Informações */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.info-card {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
    border-left: 3px solid var(--primary);
}

.info-card:hover {
    transform: translateX(5px);
}

.info-card .icon {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.info-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
    display: inline-block;
    margin-left: 0.5rem;
}

.info-card p {
    margin: 0;
    line-height: 1.4;
    font-size: 0.95rem;
    padding-left: 1.7rem;
}

.info-card a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--secondary);
}

/* Redes Sociais */
.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
    padding-left: 1.7rem;
}

.social-link {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white !important;
    border-radius: 50%;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

/* Formulário de Contato */
.contact-form {
    background: #f8f9fa;
    padding: 4rem 0;
    margin-bottom: 4rem;
}

.contact-form h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary);
}

.contact-form-inner {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.privacy-notice {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.privacy-notice input[type="checkbox"] {
    margin: 0;
    width: auto;
}

.privacy-notice label {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.privacy-notice a {
    color: var(--primary);
    text-decoration: none;
}

.privacy-notice a:hover {
    text-decoration: underline;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.submit-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.2);
}

.submit-button i {
    font-size: 1.1rem;
}

.submit-button.loading {
    opacity: 0.7;
    pointer-events: none;
}

.submit-button.loading .button-text {
    display: none;
}

.submit-button.loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.form-response {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

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

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

/* Mapa */
.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.map-wrapper iframe {
    display: block;
}

/* Animações */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsividade */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-section {
        order: -1;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 3rem 0;
    }

    .contact-hero .page-title {
        font-size: 2rem;
    }

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

@media (max-width: 480px) {
    .contact-hero .page-title {
        font-size: 1.8rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .submit-button {
        width: 100%;
    }
} 