/* Reset e estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Argue';
    src: url('ArgueDEMO.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary-color: #333;
    --secondary-color: #666;
    --accent-color: #9c8a5a;
    --light-color: #f5f5f5;
    --dark-color: #222;
    --font-main: 'Arial', sans-serif;
    --font-heading: 'Argue', 'Georgia', serif;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--primary-color);
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

/* Botões */
.btn-agendamento {
    background-color: transparent;
    color: white;
    padding: 8px 18px;
    border: 1px solid white;
    border-radius: 20px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-agendamento:hover {
    background-color: white;
    color: var(--primary-color);
}

.btn-agendamento::before {
    content: none;
}

.btn-mais {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s;
}

.btn-mais:hover {
    background-color: var(--accent-color);
    color: white;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: none;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo img {
    height: 260px;
}

/* Navegação Principal */
.main-nav ul {
    display: flex;
    gap: 20px;
}

.main-nav a {
    color: white;
    font-weight: bold;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--accent-color);
}

/* Ícones Sociais */
.social-icons {
    display: none; /* Escondido no layout de referência */
}

/* Botão de Menu (Mobile) */
.menu-toggle {
    display: none; /* Escondido por padrão em telas maiores */
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero h2 {
    font-size: 2rem;
    font-weight: normal;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-controls {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
    z-index: 2;
}

.prev-btn, .next-btn {
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.prev-btn:hover, .next-btn:hover {
    opacity: 1;
}

/* Nova Seção de Texto Abaixo do Hero */
.hero-text-section {
    background-color: white;
    padding: 60px 0;
    text-align: center;
}

.hero-text-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.hero-text-section h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero-text-section p {
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--secondary-color);
}

/* Nova Seção de Menu com Imagens */
.image-menu-section {
    padding: 80px 0;
    background-color: var(--light-color);
    text-align: center;
}

.image-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 30px;
}

.image-menu-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-menu-card:hover {
    transform: translateY(-5px);
}

.image-menu-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    color: white;
    padding: 20px;
    text-align: left;
}

.card-overlay h3 {
    margin: 0;
    font-size: 1.5rem;
}

/* Ícones de Redes Sociais Flutuantes */
.floating-social-icons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-social-icons a {
    font-size: 24px;
    color: var(--primary-color);
    transition: color 0.3s, transform 0.3s;
}

.floating-social-icons a:hover {
    color: var(--accent-color);
    transform: translateX(-5px);
}

/* Sobre Nós */
.sobre {
    padding: 80px 0;
    background-color: var(--light-color);
}

.sobre h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.sobre hr {
    width: 50px;
    margin: 0 auto 30px;
    border: 1px solid var(--accent-color);
}

.sobre-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.sobre-content p {
    margin-bottom: 20px;
}

/* Artistas */
.artistas {
    padding: 80px 0;
    text-align: center;
}

.artistas h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.artistas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

/* Depoimentos */
.depoimentos {
    padding: 80px 0;
    background-color: var(--light-color);
    text-align: center;
}

.depoimentos h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.depoimentos-slider {
    display: flex;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.depoimento-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 0 15px;
}

.depoimento-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.cliente-info {
    display: flex;
    flex-direction: column;
}

.cliente {
    font-weight: bold;
}

.unidade {
    color: var(--secondary-color);
}

.slider-controls {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.slider-controls .prev-btn,
.slider-controls .next-btn {
    color: var(--primary-color);
    background-color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Alinha todos os containers pelo topo */
    margin-bottom: 40px;
}

.footer-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 0; /* Garante que comece no topo */
}

.footer-social a {
    font-size: 24px;
    color: white;
    transition: color 0.3s;
    line-height: 1; /* Remove espaços extras */
}

.footer-social a:hover {
    color: var(--accent-color);
}

.footer-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.footer-logo {
    margin-top: 0; /* Garante que comece no topo */
}

.footer-logo img {
    width: 150px;
    height: auto;
    display: block;
}

.footer-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.sitemap {
    display: flex;
    justify-content: flex-end;
    gap: 40px;
    margin-top: 0; /* Garante que comece no topo */
}

.sitemap-column h3 {
    margin-top: 0; /* Garante que o título comece no topo */
    margin-bottom: 15px;
    color: var(--accent-color);
    font-size: 1.1rem;
    line-height: 1; /* Alinha com os ícones e logo */
}

.sitemap-column ul li {
    margin-bottom: 8px;
}

.sitemap-column a {
    color: white;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.sitemap-column a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-policy a {
    color: #999;
    font-size: 0.85rem;
}

.footer-slogan p {
    font-size: 0.85rem;
    color: #999;
}

/* Responsividade */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .sitemap {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .footer-left, .footer-right {
        text-align: center;
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .sitemap {
        justify-content: center;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .sobre h2,
    .artistas h2,
    .depoimentos h2 {
        font-size: 2rem;
    }
}


/* Estilos para os cards de artistas */
.artista-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.artista-card:hover {
    transform: translateY(-5px);
}

.artista-card img {
    width: 100% !important;
    height: 250px !important;
    object-fit: cover !important;
    object-position: center 5% !important; /* FOCO NO ROSTO (BEM NO TOPO) */
}

.artista-card h3 {
    padding: 15px 15px 5px;
    font-size: 1.2rem;
}

.artista-card p {
    padding: 0 15px 15px;
    color: var(--secondary-color);
    font-size: 0.9rem;
}


/* Estilos adicionais para efeitos e animações */

/* Animações de fade-in para seções */
.sobre, .artistas, .depoimentos {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.sobre.animate, .artistas.animate, .depoimentos.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Efeitos de hover aprimorados */
.btn-agendamento, .btn-mais {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-agendamento::before, .btn-mais::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-agendamento:hover::before, .btn-mais:hover::before {
    left: 0;
}

/* Indicadores do carrossel de depoimentos */
.depo-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.depo-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.depo-indicator:hover {
    transform: scale(1.2);
}

.depo-indicator.active {
    background-color: var(--accent-color);
}

/* Melhorias no carrossel de depoimentos */
.depoimentos-slider {
    display: flex;
    transition: transform 0.5s ease;
}

/* Menu mobile aprimorado */
.main-nav {
    transition: max-height 0.5s ease;
    overflow: hidden;
}

@media (max-width: 768px) {
    .main-nav {
        max-height: 0;
    }
    
    .main-nav.active {
        max-height: 300px;
    }
}

/* Efeito de fade para o hero */
.hero {
    transition: opacity 0.5s ease-in-out, background-image 0.5s ease-in-out;
}

/* Efeitos de hover para ícones sociais */
.social-icons a {
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

/* Efeito de destaque para links do footer */
.sitemap-column a {
    position: relative;
}

.sitemap-column a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.sitemap-column a:hover::after {
    width: 100%;
}




/* ===== ESTILOS PARA PÁGINAS DE SERVIÇOS ===== */

/* Hero Section das Páginas de Serviços */
.services-hero {
    height: 60vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 0;
}

.services-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

/* Navegação entre Serviços */
.services-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.service-nav-item {
    padding: 12px 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.service-nav-item:hover {
    border-color: var(--accent-color);
    background-color: rgba(156, 138, 90, 0.2);
    transform: translateY(-2px);
}

.service-nav-item.active {
    border-color: var(--accent-color);
    background-color: var(--accent-color);
    color: white;
}

/* Título dos Serviços */
.services-title {
    font-size: 4rem;
    font-family: var(--font-heading);
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

/* Galeria de Serviços */
.services-gallery {
    padding: 80px 0;
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 400px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
    color: white;
    padding: 30px;
    text-align: left;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.service-card:hover .service-overlay {
    transform: translateY(0);
}

.service-overlay h3 {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--accent-color);
}

.service-overlay p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    opacity: 0.9;
}

/* Seção Sobre o Serviço */
.service-about {
    padding: 80px 0;
    background-color: var(--light-color);
    text-align: center;
}

.service-about h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.service-about hr {
    width: 60px;
    margin: 0 auto 40px;
    border: 2px solid var(--accent-color);
    border-radius: 2px;
}

.service-about-content {
    max-width: 800px;
    margin: 0 auto 40px;
}

.service-about-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--secondary-color);
}

/* Responsividade para Páginas de Serviços */
@media (max-width: 992px) {
    .services-title {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .service-card {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .services-hero {
        height: 50vh;
    }
    
    .services-title {
        font-size: 2.5rem;
    }
    
    .services-nav {
        gap: 10px;
    }
    
    .service-nav-item {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        height: 300px;
    }
    
    .service-overlay {
        padding: 20px;
    }
    
    .service-overlay h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .services-title {
        font-size: 2rem;
    }
    
    .services-nav {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .service-nav-item {
        width: 200px;
        text-align: center;
    }
    
    .service-about h2 {
        font-size: 2rem;
    }
}

/* Efeitos Especiais para as Páginas de Serviços */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(156, 138, 90, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 1;
}

/* Animação de entrada para os cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease-out;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }


/* ===== ESTILOS ATUALIZADOS PARA SEÇÃO DE ARTISTAS ===== */

/* Grid de Artistas - Layout para 12 cards menores */
.artistas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* Cards de Artistas - Tamanho reduzido */
.artista-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.artista-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.artista-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center top;
}

.artista-card h3 {
    padding: 10px 15px 5px;
    font-size: 1rem;
    margin: 0;
    color: var(--primary-color);
}

.artista-card p {
    padding: 0 15px 15px;
    color: var(--secondary-color);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.3;
}

/* ===== ESTILOS PARA MODAL DE DETALHES DO ARTISTA ===== */

/* Overlay do Modal */
.artista-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Container do Modal */
.artista-modal {
    background-color: white;
    border-radius: 15px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Botão de Fechar */
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* Conteúdo do Modal */
.artista-modal-content {
    display: flex;
    flex-direction: row;
    min-height: 500px;
}

/* Seção da Imagem */
.artista-image-section {
    flex: 1;
    min-height: 500px;
}

.artista-main-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 40% !important; /* FOCO NO CORPO (MAIS PARA BAIXO) */
    border-radius: 15px 0 0 15px;
}

/* Seção de Informações */
.artista-info-section {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Nome do Artista */
.artista-nome {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin: 0 0 10px 0;
}

/* Especialidade */
.artista-especialidade {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: bold;
    margin: 0 0 30px 0;
}

/* Detalhes do Artista */
.artista-details h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 20px 0 10px 0;
    font-family: var(--font-heading);
}

.artista-details p {
    color: var(--secondary-color);
    line-height: 1.6;
    margin: 0 0 20px 0;
}

/* Lista de Especialidades */
.especialidades-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.especialidades-list li {
    background-color: var(--light-color);
    padding: 8px 12px;
    margin: 5px 0;
    border-radius: 5px;
    color: var(--primary-color);
    font-size: 0.9rem;
    border-left: 3px solid var(--accent-color);
}

/* Ações do Artista */
.artista-actions {
    margin-top: 30px;
}

/* Botão de Agendar */
.btn-agendar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--accent-color);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.btn-agendar:hover {
    background-color: #8a7a4a;
    transform: translateY(-2px);
}

.btn-agendar i {
    font-size: 1.1rem;
}

/* Redes Sociais do Artista */
.artista-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    color: var(--primary-color);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

/* Responsividade para Modal */
@media (max-width: 768px) {
    .artista-modal-content {
        flex-direction: column;
    }
    
    .artista-image-section {
        min-height: 300px;
    }
    
    .artista-main-image {
        border-radius: 15px 15px 0 0;
    }
    
    .artista-info-section {
        padding: 30px 20px;
    }
    
    .artista-nome {
        font-size: 2rem;
    }
    
    .artista-modal {
        margin: 10px;
        max-height: 95vh;
    }
}

/* Responsividade para Grid de Artistas */
@media (max-width: 992px) {
    .artistas-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 18px;
    }
    
    .artista-card img {
        height: 160px !important;
        object-fit: cover !important;
        object-position: center 5% !important;
    }
}

@media (max-width: 768px) {
    .artistas-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .artista-card img {
        height: 140px !important;
        object-fit: cover !important;
        object-position: center 5% !important;
    }
    
    .artista-card h3 {
        font-size: 0.9rem;
        padding: 8px 12px 4px;
    }
    
    .artista-card p {
        font-size: 0.8rem;
        padding: 0 12px 12px;
    }
}

@media (max-width: 576px) {
    .artistas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .artista-card img {
        height: 120px !important;
        object-fit: cover !important;
        object-position: center 5% !important;
    }
}

/* Animações para os Cards */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.artista-card {
    animation: fadeInScale 0.5s ease-out;
}

/* Delay escalonado para animação */
.artista-card:nth-child(1) { animation-delay: 0.1s; }
.artista-card:nth-child(2) { animation-delay: 0.2s; }
.artista-card:nth-child(3) { animation-delay: 0.3s; }
.artista-card:nth-child(4) { animation-delay: 0.4s; }
.artista-card:nth-child(5) { animation-delay: 0.5s; }
.artista-card:nth-child(6) { animation-delay: 0.6s; }
.artista-card:nth-child(7) { animation-delay: 0.7s; }
.artista-card:nth-child(8) { animation-delay: 0.8s; }
.artista-card:nth-child(9) { animation-delay: 0.9s; }
.artista-card:nth-child(10) { animation-delay: 1.0s; }
.artista-card:nth-child(11) { animation-delay: 1.1s; }
.artista-card:nth-child(12) { animation-delay: 1.2s; }
