/* Garantindo que nenhum número no site esteja na cor azul */
a[href^="tel"],
a[href^="mailto"],
.contact-number,
.crp-number,
.footer-logo p,
.footer-credits,
.address-text,
.service-item p {
    color: inherit !important;
    text-decoration: none !important;
}

/* Ajustando o botão "Sobre Mim" para fundo branco e texto dourado escuro */
.hero-buttons .btn-sobre-mim {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.hero-buttons .btn-sobre-mim:hover {
    background-color: var(--background-light);
    transform: translateY(-2px);
}

/* Reposicionando o texto da hero section na versão mobile */
@media (max-width: 1024px) {
    .hero-container {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-lg);
        position: relative;
    }
    
    .hero-image {
        order: -1;
        position: relative;
        width: 100%;
        height: auto;
        z-index: 0;
    }
    
    .hero-image::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(139, 115, 85, 0.6); /* Dourado semi-transparente */
        border-radius: var(--radius-xl);
        z-index: 1;
    }
    
    .hero-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        text-align: center;
        color: var(--text-dark);
        z-index: 2;
        margin-top: -60px;
        background-color: var(--background-white);
        padding: var(--spacing-lg);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow);
    }
    
    .hero-title, .hero-subtitle {
        color: var(--primary-color);
        text-shadow: none;
    }
    
    .hero-description {
        color: var(--text-light);
        text-shadow: none;
    }
}

/* Ajustes para o rodapé */
.footer-logo p,
.footer-credits a {
    color: var(--text-dark) !important;
}

