/* ===== VARIÁVEIS CSS ===== */
:root {
    --primary-color: #d4af37;
    --primary-dark: #b8941f;
    --secondary-color: #8b4513;
    --accent-color: #ff6b35;
    --warm-yellow: #ffd700;
    --warm-orange: #ff8c00;
    --warm-brown: #8b4513;
    --text-dark: #2c1810;
    --text-light: #f8f9fa;
    --bg-light: #fff8e1;
    --shadow-light: 0 2px 10px rgba(139, 69, 19, 0.1);
    --shadow-medium: 0 4px 20px rgba(139, 69, 19, 0.15);
    --shadow-heavy: 0 8px 30px rgba(139, 69, 19, 0.2);
    --shadow-xl: 0 12px 40px rgba(139, 69, 19, 0.25);
}

/* ===== RESET E BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--warm-brown) 0%, var(--secondary-color) 50%, var(--warm-orange) 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    font-size: 1.25rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 400;
    margin-bottom: 2rem;
}

.hero-buttons {
    margin-bottom: 2rem;
}

.hero-scroll-indicator {
    animation: bounce 2s infinite;
}

.hero-scroll-indicator a {
    display: inline-block;
    transition: all 0.3s ease;
}

.hero-scroll-indicator a:hover {
    transform: translateY(5px);
    color: var(--primary-color) !important;
}

/* ===== BOTÕES ===== */
.btn {
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--warm-orange));
    color: white;
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--primary-dark), var(--accent-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
    color: white;
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background: white;
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-success {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    box-shadow: var(--shadow-medium);
}

.btn-success:hover {
    background: linear-gradient(45deg, #218838, #1ea085);
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
    color: white;
}



.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-light);
}

/* ===== CARDS ===== */
.card {
    border-radius: 15px;
    transition: all 0.3s ease;
    border: none;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.artist-item {
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.artist-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.artist-icon {
    font-size: 2rem;
}

/* ===== SEÇÕES ===== */
section {
    position: relative;
    max-width: 100vw;
    overflow-x: hidden;
    width: 100%;
}

.bg-light {
    background-color: var(--bg-light) !important;
}

/* ===== SEÇÃO DE ARTISTAS UNIFICADA ===== */
.artists-unified-card {
    background: white;
    border-radius: 25px;
    box-shadow: var(--shadow-heavy);
    overflow: hidden;
    transition: all 0.3s ease;
    max-width: 100%;
    width: 100%;
}

.artists-unified-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.artists-header {
    background: linear-gradient(135deg, var(--primary-color), var(--warm-orange));
    color: white;
    padding: 3rem 2rem 2rem;
    text-align: center;
    position: relative;
}

.artists-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}



.artists-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.artists-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    opacity: 0.9;
}

.artists-content {
    padding: 3rem 2rem;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.artists-grid .artist-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.artists-grid .artist-item:hover {
    background: white;
    border-color: var(--primary-color);
    transform: translateX(8px) scale(1.02);
    box-shadow: var(--shadow-medium);
}

.artists-grid .artist-item span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
}

/* ===== IMAGEM DOS ARTISTAS ===== */
.artists-image-container {
    padding: 0 2rem;
}

.artists-image {
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.artists-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

/* ===== BOTÃO TOGGLE ARTISTAS ===== */
#toggleArtistsBtn {
    transition: all 0.3s ease;
    border-width: 2px;
    font-weight: 600;
    padding: 0.75rem 2rem;
}

#toggleArtistsBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

#toggleArtistsBtn i {
    transition: transform 0.3s ease;
}

#toggleArtistsBtn:hover i {
    transform: scale(1.1);
}

/* ===== ANIMAÇÕES DOS GRIDS DE ARTISTAS ===== */
.artists-grid {
    transition: all 0.5s ease;
}

.artists-grid[id="artists-full"] {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .artists-image-container {
        padding: 0 1rem;
    }
    
    .artists-image {
        max-width: 90%;
    }
    
    #toggleArtistsBtn {
        padding: 0.5rem 1.5rem;
        font-size: 1rem;
    }
}

.artists-stats {
    background: linear-gradient(135deg, var(--bg-light), #f8f9fa);
    padding: 2.5rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stats-row .stat-item {
    padding: 1rem;
    transition: all 0.3s ease;
}

.stats-row .stat-item:hover {
    transform: translateY(-8px);
}

.stats-row .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.stats-row .stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== PREÇO ===== */
.pricing {
    background: linear-gradient(135deg, var(--bg-light), #fff);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    max-width: 100%;
    width: 100%;
}

.original-price {
    font-size: 1.2rem;
    font-weight: 500;
}

.current-price {
    color: var(--primary-color);
    font-weight: 800;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.price-description {
    font-size: 1.1rem;
    font-weight: 500;
}



/* ===== DEPOIMENTOS ===== */
.stars {
    font-size: 1.2rem;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: var(--shadow-light);
    background: var(--primary-color);
    color: white;
    font-size: 2rem;
}

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

.avatar:hover img {
    transform: scale(1.1);
}

/* ===== FAQ ===== */
.accordion-item {
    border: none;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    max-width: 100%;
    width: 100%;
}

.accordion-button {
    background: linear-gradient(45deg, var(--bg-light), white);
    border: none;
    font-weight: 600;
    color: var(--text-dark);
    padding: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(45deg, var(--primary-color), var(--warm-orange));
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    background: white;
    padding: 1.5rem;
    color: var(--text-dark);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

/* ===== CRONÔMETRO ===== */
.countdown-container {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 15px;
    padding: 1.5rem;
    color: white;
    text-align: center;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
    animation: countdown-pulse 2s infinite;
}

.countdown-container h5 {
    color: white;
    font-weight: 600;
    margin: 0;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    min-width: 60px;
}

.countdown-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

.countdown-separator {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: separator-blink 1s infinite;
}

@keyframes countdown-pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 107, 107, 0.5);
    }
}

@keyframes separator-blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .countdown-container {
        padding: 1rem;
    }
    
    .countdown-number {
        font-size: 2.5rem;
        min-width: 50px;
    }
    
    .countdown-separator {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
}

/* ===== BOTÃO FLUTUANTE DO WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-btn:hover {
    background: #128c7e;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn:active {
    transform: scale(0.95);
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
}

/* ===== FOOTER SIMPLIFICADO ===== */
.footer-section {
    background: linear-gradient(135deg, var(--text-dark), var(--secondary-color));
    color: white;
    padding: 2.5rem 0 1.5rem;
    position: relative;
    max-width: 100vw;
    overflow-x: hidden;
    width: 100%;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-brand h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    line-height: 1.6;
    color: white;
    opacity: 0.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    margin-bottom: 0;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0 1.5rem;
}

/* ===== MODAL ===== */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: var(--shadow-heavy);
    max-width: 100%;
    overflow: hidden;
    width: 100%;
}

.modal-header {
    background: linear-gradient(45deg, var(--primary-color), var(--warm-orange));
    color: white;
    border-radius: 15px 15px 0 0;
}

.modal-body {
    max-width: 100%;
    overflow: hidden;
    width: 100%;
}

.audio-player {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    max-width: 100%;
    width: 100%;
}

.audio-player h6 {
    color: var(--text-dark);
    font-weight: 600;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

/* ===== RESPONSIVIDADE MOBILE ===== */
@media (max-width: 991px) {
    .hero-section h1 {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .hero-scroll-indicator {
        margin-top: 2rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .current-price {
        font-size: 2.8rem;
    }
    
    .card-body {
        padding: 2rem !important;
    }
    
    .pricing {
        padding: 1.5rem;
    }
    

    
    .input-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .input-group .form-control,
    .input-group .btn {
        width: 100%;
        border-radius: 50px;
    }
    
    .cta-buttons .row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer-section {
        padding: 2rem 0 1rem;
    }
    
    .footer-brand {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .artists-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .artists-icon {
        font-size: 3rem;
    }
    
    .artists-title {
        font-size: 2rem;
    }
    
    .artists-subtitle {
        font-size: 1rem;
    }
    
    .artists-content {
        padding: 2rem 1.5rem;
    }
    
    .artists-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .artists-stats {
        padding: 2rem 1.5rem;
    }
    
    .stats-row .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
    
    .btn-lg {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .current-price {
        font-size: 2.2rem;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .display-3 {
        font-size: 2.8rem;
    }
    
    .card-body {
        padding: 1.5rem !important;
    }
    
    .pricing {
        padding: 1.25rem;
    }
    

    
    .accordion-button {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .accordion-body {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .artist-item {
        padding: 1.5rem !important;
    }
    
    .badge {
        font-size: 0.75rem !important;
        padding: 0.5rem 0.75rem !important;
    }
    
    .modal-dialog {
        margin: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .audio-player {
        padding: 0.75rem;
    }
    
    .audio-player h6 {
        font-size: 0.9rem;
    }
    
    .footer-section {
        padding: 1rem 0 0.75rem;
    }
    
    .footer-brand {
        text-align: center;
        margin-bottom: 0.75rem;
    }
    
    .artists-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .artists-icon {
        font-size: 2.5rem;
    }
    
    .artists-title {
        font-size: 1.5rem;
    }
    
    .artists-subtitle {
        font-size: 0.9rem;
    }
    
    .artists-content {
        padding: 1.5rem 1rem;
    }
    
    .artists-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 0.75rem;
    }
    
    .artists-grid .artist-item {
        padding: 0.75rem 1rem;
        gap: 0.75rem;
    }
    
    .artists-grid .artist-item span {
        font-size: 0.9rem;
    }
    
    .artists-stats {
        padding: 1.5rem 1rem;
    }
    
    .stats-row {
        gap: 1rem;
    }
    
    .stats-row .stat-item {
        padding: 0.75rem;
    }
    
    .stats-row .stat-number {
        font-size: 2rem;
    }
    
    .stats-row .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-section .lead {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
        font-size: 0.85rem;
        padding: 0.7rem 1.25rem;
    }
    
    .btn-lg {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-3 {
        font-size: 2.2rem;
    }
    
    .current-price {
        font-size: 1.8rem;
    }
    
    .original-price {
        font-size: 1rem;
    }
    
    .price-description {
        font-size: 0.9rem;
    }
    
    .card-body {
        padding: 1.25rem !important;
    }
    
    .pricing {
        padding: 1rem;
    }
    

    
    .feature-icon {
        font-size: 1.75rem;
    }
    
    .artist-icon {
        font-size: 1.5rem;
    }
    
    .badge {
        font-size: 0.7rem !important;
        padding: 0.4rem 0.6rem !important;
        margin: 0.25rem !important;
    }
    
    .accordion-button {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
    .accordion-body {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
    .stars {
        font-size: 1rem;
    }
    
    .avatar {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .modal-dialog {
        margin: 0.5rem;
    }
    
    .modal-body {
        padding: 0.75rem;
    }
    
    .audio-player {
        padding: 0.5rem;
    }
    
    .audio-player h6 {
        font-size: 0.8rem;
    }
    
    .hero-content {
        padding: 1.5rem 0.5rem;
    }
    
    .hero-scroll-indicator {
        margin-top: 1.5rem;
    }
    
    .hero-scroll-indicator i {
        font-size: 2rem !important;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .row {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }
    
    .col, .col-md-4, .col-md-6, .col-lg-3, .col-lg-4, .col-lg-8 {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .footer-section {
        padding: 1.5rem 0 1rem;
    }
    
    .artists-header {
        padding: 1rem 0.75rem 0.75rem;
    }
    
    .artists-icon {
        font-size: 2rem;
    }
    
    .artists-title {
        font-size: 1.25rem;
    }
    
    .artists-subtitle {
        font-size: 0.8rem;
    }
    
    .artists-content {
        padding: 1rem 0.75rem;
    }
    
    .artists-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.5rem;
    }
    
    .artists-grid .artist-item {
        padding: 0.5rem 0.75rem;
        gap: 0.5rem;
    }
    
    .artists-grid .artist-item i {
        font-size: 1rem;
    }
    
    .artists-grid .artist-item span {
        font-size: 0.8rem;
    }
    
    .artists-stats {
        padding: 1rem 0.75rem;
    }
    
    .stats-row {
        gap: 0.75rem;
    }
    
    .stats-row .stat-item {
        padding: 0.5rem;
    }
    
    .stats-row .stat-number {
        font-size: 1.5rem;
    }
    
    .stats-row .stat-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 375px) {
    .hero-section h1 {
        font-size: 1.6rem;
    }
    
    .hero-section .lead {
        font-size: 0.9rem;
    }
    
    .display-4 {
        font-size: 1.8rem;
    }
    
    .display-3 {
        font-size: 2rem;
    }
    
    .current-price {
        font-size: 1.6rem;
    }
    
    .btn {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }
    
    .btn-lg {
        padding: 0.8rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .card-body {
        padding: 1rem !important;
    }
    
    .pricing {
        padding: 0.75rem;
    }
    

    
    .badge {
        font-size: 0.65rem !important;
        padding: 0.3rem 0.5rem !important;
    }
    
    .footer-section {
        padding: 1.5rem 0 1rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .artists-header {
        padding: 0.75rem 0.5rem 0.5rem;
    }
    
    .artists-icon {
        font-size: 1.5rem;
    }
    
    .artists-title {
        font-size: 1rem;
    }
    
    .artists-subtitle {
        font-size: 0.7rem;
    }
    
    .artists-content {
        padding: 0.75rem 0.5rem;
    }
    
    .artists-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.4rem;
    }
    
    .artists-grid .artist-item {
        padding: 0.4rem 0.5rem;
        gap: 0.4rem;
    }
    
    .artists-grid .artist-item i {
        font-size: 0.8rem;
    }
    
    .artists-grid .artist-item span {
        font-size: 0.7rem;
    }
    
    .artists-stats {
        padding: 0.75rem 0.5rem;
    }
    
    .stats-row {
        gap: 0.5rem;
    }
    
    .stats-row .stat-item {
        padding: 0.4rem;
    }
    
    .stats-row .stat-number {
        font-size: 1.2rem;
    }
    
    .stats-row .stat-label {
        font-size: 0.65rem;
    }
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== SCROLL SUAVE ===== */
html {
    scroll-behavior: smooth;
}

/* ===== FOCUS VISIBLE ===== */
.btn:focus,
.form-control:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ===== LOADING LAZY ===== */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* ===== UTILITÁRIOS ===== */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

.shadow-sm {
    box-shadow: var(--shadow-light) !important;
}

.shadow {
    box-shadow: var(--shadow-medium) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-heavy) !important;
}

.shadow-xl {
    box-shadow: var(--shadow-xl) !important;
}
