/* Base Styles */
:root {
    --primary-color: #f0c808;
    --secondary-color: #e36414;
    --dark-color: #212121;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

a {
    text-decoration: none;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

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

/* Header */
header {
    background-color: var(--dark-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo a {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

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

.menu {
    display: flex;
}

.menu li {
    margin-left: 20px;
}

.menu a {
    color: var(--light-color);
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 4px;
}

.menu a:hover, .menu a.active {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--light-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/hero-bg-new.jpg');
    background-size: cover;
    background-position: center 15%;
    color: var(--light-color);
    padding: 100px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-cta {
    margin-top: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn.primary {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

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

.btn.primary:hover {
    background-color: #d9b400;
}

.btn.secondary:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

/* Featured Section */
.featured-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.featured-item {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.featured-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.featured-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.featured-item h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.about-content p {
    margin-bottom: 15px;
}

.about-cta {
    margin-top: 30px;
}

.about-cta .btn {
    display: inline-block;
    visibility: visible;
    opacity: 1;
}

.about-cta .btn.secondary {
    color: var(--dark-color);
    border: 2px solid var(--primary-color);
    background-color: transparent;
}

/* Music Section */
.music-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--dark-color);
    color: var(--light-color);
}

.music-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.music-section p {
    margin-bottom: 40px;
}

.music-player {
    max-width: 800px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Latest Releases */
.latest-releases {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.latest-releases h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

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

.release-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.release-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.release-cover img {
    width: 100%;
    height: auto;
    display: block;
}

.release-info {
    padding: 20px;
}

.release-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.release-info p {
    color: var(--gray-color);
    margin-bottom: 15px;
}

.release-player {
    margin-top: 15px;
}

.releases-cta {
    text-align: center;
    margin-top: 40px;
}

/* Streaming Section */
.streaming-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--dark-color);
    color: var(--light-color);
}

.streaming-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.streaming-section p {
    margin-bottom: 40px;
}

.streaming-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.streaming-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 25px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--light-color);
    transition: all 0.3s ease;
}

.streaming-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.streaming-link i {
    font-size: 30px;
    margin-bottom: 10px;
}

/* Newsletter */
.newsletter {
    padding: 80px 0;
    background-color: #f5f5f5;
    text-align: center;
}

.newsletter h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.newsletter p {
    margin-bottom: 40px;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-top: 15px;
    text-align: left;
}

.form-check input {
    margin-right: 10px;
    margin-top: 5px;
}

.form-check label {
    font-size: 14px;
    color: var(--gray-color);
}

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

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

.footer-logo h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-nav h4, .footer-contact h4, .footer-social h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-nav ul li, .footer-contact ul li {
    margin-bottom: 10px;
}

.footer-nav a, .footer-contact a {
    color: var(--light-color);
}

.footer-nav a:hover, .footer-contact a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-color);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

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

.footer-bottom p {
    font-size: 14px;
}

.footer-bottom a {
    color: var(--light-color);
    font-size: 14px;
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* Page Header */
.page-header {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-header p {
    font-size: 18px;
}

/* Music Groups Section */
.music-groups-section {
    padding: 60px 0;
}

.music-group {
    margin-bottom: 60px;
}

.music-group h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.music-group h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.music-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.music-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.music-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.music-cover {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #f5f5f5;
}

.music-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.music-info {
    padding: 20px;
}

.music-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.music-info p {
    color: var(--gray-color);
    margin-bottom: 15px;
}

.music-player {
    margin-top: 15px;
}

/* Videos Section */
.videos-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.video-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.video-info p {
    color: var(--gray-color);
}

/* Gallery Section */
.gallery-section {
    padding: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

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

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-details p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-details i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 20px;
}

.contact-form h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

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

/* Awards Section */
.awards-container {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
    gap: 20px;
}

.award-item {
    flex: 1;
    border: 2px solid #f0c808;
    border-radius: 8px;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.award-item .award-icon {
    font-size: 2.5rem;
    color: #f0c808;
    margin-bottom: 1rem;
}

.award-item h3 {
    margin-bottom: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .awards-container {
        flex-direction: column;
    }
}

/* ===== OTIMIZAÇÕES MOBILE COMPLETAS ===== */

/* Tablet e Mobile Geral */
@media (max-width: 768px) {
    /* Menu Mobile Aprimorado */
    .mobile-menu-btn {
        display: flex;
        width: 44px;
        height: 44px;
        justify-content: center;
        align-items: center;
        background: var(--primary-color);
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-btn:hover {
        background: var(--secondary-color);
        transform: scale(1.05);
    }
    
    .mobile-menu-btn span {
        background: white;
        width: 20px;
        height: 2px;
        transition: all 0.3s ease;
    }
    
    .menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, var(--dark-color) 0%, #34495e 100%);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        transform: translateY(-150%);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .menu.active {
        transform: translateY(0);
    }
    
    .menu li {
        margin: 15px 0;
        width: 80%;
        text-align: center;
    }
    
    .menu a {
        display: block;
        padding: 15px 20px;
        color: white;
        font-size: 18px;
        font-weight: 500;
        border-radius: 8px;
        transition: all 0.3s ease;
        min-height: 44px;
        line-height: 1.2;
    }
    
    .menu a:hover, .menu a.active {
        background: var(--primary-color);
        transform: translateX(10px);
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 40px 0 60px;
        min-height: 70vh;
    }
    
    .hero-content {
        text-align: center;
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 16px;
        margin-bottom: 30px;
        line-height: 1.4;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 15px 25px;
        font-size: 16px;
        min-height: 50px;
        border-radius: 25px;
    }
    
    /* Container Mobile */
    .container {
        padding: 0 15px;
    }
    
    /* Seções Mobile */
    section {
        padding: 40px 0;
    }
    
    /* Awards Section Mobile */
    .awards-section {
        padding: 30px 0;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .award-card {
        padding: 25px 20px;
        text-align: center;
    }
    
    .award-card h3 {
        font-size: 16px;
        line-height: 1.3;
    }
    
    .award-card p {
        font-size: 14px;
        line-height: 1.4;
    }
    
    /* About Section Mobile */
    .about-section {
        padding: 40px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .about-text p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .about-image {
        order: -1;
        max-width: 250px;
        margin: 0 auto;
    }
    
    /* Singles Section Mobile */
    .singles-section {
        padding: 40px 0;
    }
    
    .singles-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .single-card {
        text-align: center;
    }
    
    .single-card img {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .single-card h3 {
        font-size: 18px;
        margin: 15px 0 8px;
    }
    
    .single-card p {
        font-size: 14px;
    }
    
    /* Streaming Section Mobile */
    .streaming-section {
        padding: 40px 0;
    }
    
    .streaming-links {
        flex-direction: column;
        gap: 15px;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .streaming-link {
        width: 100%;
        padding: 15px 20px;
        font-size: 16px;
        min-height: 50px;
        border-radius: 25px;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .footer-section ul li {
        margin-bottom: 10px;
    }
    
    .footer-section a {
        font-size: 15px;
        padding: 8px 0;
        display: block;
        min-height: 44px;
        line-height: 1.4;
    }
    
    .social-icons {
        justify-content: center;
        gap: 20px;
    }
    
    .social-icons a {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-bottom p {
        margin: 0;
        font-size: 14px;
    }
}

/* Mobile Pequeno (até 576px) */
@media (max-width: 576px) {
    /* Header Mobile Pequeno */
    header .container {
        padding: 15px;
    }
    
    .logo a {
        font-size: 20px;
    }
    
    /* Hero Mobile Pequeno */
    .hero {
        padding: 30px 0 50px;
        min-height: 60vh;
    }
    
    .hero-content h1 {
        font-size: 26px;
        line-height: 1.1;
    }
    
    .hero-content p {
        font-size: 15px;
    }
    
    /* Container Mobile Pequeno */
    .container {
        padding: 0 10px;
    }
    
    /* Seções Mobile Pequeno */
    section {
        padding: 30px 0;
    }
    
    /* Títulos Mobile Pequeno */
    h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    h3 {
        font-size: 18px;
    }
    
    /* Cards Mobile Pequeno */
    .award-card, .single-card {
        padding: 20px 15px;
    }
    
    /* Botões Mobile Pequeno */
    .btn {
        padding: 12px 20px;
        font-size: 15px;
        min-height: 48px;
    }
    
    /* Grids Mobile Pequeno */
    .featured-grid, 
    .releases-grid, 
    .music-items, 
    .video-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Menu Mobile Pequeno */
    .menu a {
        font-size: 16px;
        padding: 12px 15px;
    }
    
    /* Formulários Mobile Pequeno */
    input, textarea, select {
        font-size: 16px; /* Evita zoom no iOS */
        padding: 15px;
        min-height: 48px;
    }
    
    /* Galeria Mobile Pequeno */
    .gallery-item {
        margin-bottom: 20px;
    }
    
    .gallery-download {
        width: 100%;
        margin-top: 10px;
        padding: 12px;
        font-size: 14px;
    }
}

/* Mobile Extra Pequeno (até 375px) */
@media (max-width: 375px) {
    .hero-content h1 {
        font-size: 24px;
    }
    
    .container {
        padding: 0 8px;
    }
    
    .btn {
        font-size: 14px;
        padding: 10px 15px;
    }
    
    .award-card h3 {
        font-size: 15px;
    }
    
    .award-card p {
        font-size: 13px;
    }
}

/* Otimizações de Performance Mobile */
@media (max-width: 768px) {
    /* Lazy loading para imagens */
    img {
        loading: lazy;
    }
    
    /* Reduzir animações em dispositivos com pouca bateria */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
    
    /* Otimizar scroll em mobile */
    body {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Melhorar toque em elementos interativos */
    a, button, input, textarea, select {
        -webkit-tap-highlight-color: rgba(240, 200, 8, 0.3);
        touch-action: manipulation;
    }
}




/* ===== ESTILOS MOBILE ESPECÍFICOS POR PÁGINA ===== */

/* Galeria Mobile */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
    }
    
    .gallery-item {
        text-align: center;
        background: white;
        border-radius: 12px;
        padding: 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .gallery-item img {
        width: 100%;
        max-width: 300px;
        height: auto;
        border-radius: 8px;
        margin-bottom: 15px;
    }
    
    .gallery-download {
        width: 100%;
        padding: 15px;
        font-size: 16px;
        min-height: 50px;
        border-radius: 25px;
        margin-top: 10px;
    }
    
    .modal-content {
        width: 95%;
        max-width: 400px;
        margin: 5% auto;
        padding: 20px;
    }
    
    .modal-image {
        width: 100%;
        height: auto;
        max-height: 60vh;
        object-fit: contain;
    }
    
    .modal-controls {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }
    
    .modal-controls button {
        width: 100%;
        padding: 15px;
        font-size: 16px;
        min-height: 50px;
    }
}

/* Biografia Mobile */
@media (max-width: 768px) {
    .biografia-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: left;
    }
    
    .biografia-image {
        order: -1;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .biografia-image img {
        width: 100%;
        max-width: 250px;
        height: auto;
        border-radius: 12px;
    }
    
    .biografia-text {
        padding: 0 10px;
    }
    
    .biografia-text h1 {
        font-size: 28px;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .biografia-text p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 20px;
        text-align: justify;
    }
    
    .biografia-text p:first-letter {
        font-size: 3em;
        line-height: 1;
        margin-right: 8px;
    }
}

/* Reviews Mobile */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 10px;
    }
    
    .review-card {
        padding: 25px 20px;
        text-align: left;
    }
    
    .review-card blockquote {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .review-author {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .review-link {
        width: 100%;
        padding: 12px 20px;
        font-size: 15px;
        min-height: 48px;
        text-align: center;
    }
}

/* Contato Mobile */
@media (max-width: 768px) {
    .contact-hero {
        padding: 40px 0;
        min-height: auto;
    }
    
    .contact-hero h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .contact-email {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .contact-form {
        max-width: 100%;
        padding: 25px 15px;
        margin: 0 10px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 15px;
        font-size: 16px;
        min-height: 50px;
        border-radius: 8px;
        border: 2px solid #ddd;
    }
    
    .form-group textarea {
        min-height: 120px;
        resize: vertical;
    }
    
    .checkbox-group {
        margin: 20px 0;
        text-align: left;
    }
    
    .checkbox-group input[type="checkbox"] {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }
    
    .checkbox-group label {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .submit-btn {
        width: 100%;
        padding: 15px;
        font-size: 18px;
        min-height: 55px;
        border-radius: 25px;
        margin-top: 20px;
    }
}

/* Confraria da Toca Mobile */
@media (max-width: 768px) {
    .album-info {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .album-cover {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .album-details h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .album-details p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 15px;
        text-align: left;
    }
    
    .album-download {
        width: 100%;
        max-width: 280px;
        margin: 20px auto 0;
        padding: 15px;
        font-size: 16px;
        min-height: 50px;
    }
    
    .tracklist {
        margin-top: 30px;
    }
    
    .tracklist h3 {
        font-size: 22px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .track-item {
        padding: 15px;
        margin-bottom: 10px;
        border-radius: 8px;
        background: #f8f9fa;
    }
    
    .track-item h4 {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .track-item p {
        font-size: 14px;
        margin: 0;
    }
}

/* Músicas e Vídeos Mobile */
@media (max-width: 768px) {
    .music-items,
    .video-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 10px;
    }
    
    .music-item,
    .video-item {
        text-align: center;
        background: white;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .music-item img,
    .video-item img {
        width: 100%;
        max-width: 250px;
        height: auto;
        border-radius: 8px;
        margin-bottom: 15px;
    }
    
    .music-item h3,
    .video-item h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .music-item p,
    .video-item p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .music-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .music-links a {
        width: 100%;
        padding: 12px;
        font-size: 14px;
        min-height: 44px;
        border-radius: 20px;
    }
}

/* Página Confraria da Toca */
.album-hero {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.album-info {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

.album-cover {
    position: relative;
}

.album-cover img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.album-award {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.album-award i {
    margin-right: 5px;
}

.album-details h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.album-artist {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.album-year {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.album-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
}

@media (max-width: 768px) {
    .album-info {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .album-cover img {
        max-width: 250px;
    }
    
    .album-details h2 {
        font-size: 28px;
    }
}


/* Galeria */
.gallery-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 24px;
}

.photo-credits {
    text-align: center;
    padding: 40px 0;
    border-top: 2px solid var(--primary-color);
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.photo-credits p {
    font-size: 18px;
    color: var(--dark-color);
    margin: 0;
}

.photo-credits i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Botões de Download da Galeria */
.gallery-download-btn {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 0 0 12px 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.gallery-download-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(240, 200, 8, 0.4);
}

.gallery-download-btn:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(240, 200, 8, 0.3);
}

.gallery-download-btn:disabled {
    cursor: not-allowed;
    opacity: 0.8;
    transform: none;
    box-shadow: none;
}

.gallery-download-btn i {
    font-size: 16px;
}

.gallery-download-btn .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: hidden;
}

.modal-content {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.modal-content img {
    max-width: 100vw;
    max-height: 100vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.close:hover {
    color: var(--primary-color);
}

.modal-credits {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 20px;
}

.modal-credits i {
    color: var(--primary-color);
    margin-right: 8px;
}

.modal-controls {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
}

.modal-controls button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-controls button:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(240, 200, 8, 0.4);
}

.modal-controls button:disabled {
    cursor: not-allowed;
    opacity: 0.8;
    transform: none;
    box-shadow: none;
}
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-item img {
        height: 300px;
    }
    
    .photo-credits {
        padding: 30px 20px;
    }
    
    .gallery-download-btn {
        padding: 15px 20px;
        font-size: 16px;
        gap: 10px;
    }
    
    .gallery-download-btn i {
        font-size: 18px;
    }
    
    .modal-controls {
        bottom: 80px;
    }
    
    .modal-controls button {
        padding: 15px 25px;
        font-size: 16px;
    }
}    
    .photo-credits p {
        font-size: 16px;
    }
    
    .modal-content {
        width: 95%;
        padding: 10px;
    }
}

/* Controles do Modal */
.modal-controls {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10000;
}

.modal-controls button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.modal-controls button:hover {
    background: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.modal-controls button i {
    margin-right: 8px;
}

@media (max-width: 768px) {
    .modal-controls {
        top: 10px;
        left: 10px;
    }
    
    .modal-controls button {
        padding: 10px 16px;
        font-size: 12px;
    }
}


/* Biografia Section */
.biography-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.biography-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.biography-image {
    position: sticky;
    top: 100px;
}

.biography-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.biography-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-color);
}

.biography-text p {
    margin-bottom: 30px;
    text-align: justify;
}

.biography-text p:first-child::first-letter {
    font-size: 4em;
    font-weight: bold;
    float: left;
    line-height: 1;
    margin: 0 8px 0 0;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .biography-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .biography-image {
        position: static;
    }
    
    .biography-text {
        font-size: 16px;
    }
    
    .biography-text p:first-child::first-letter {
        font-size: 3em;
    }
}

/* Album Downloads */
.album-downloads {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--primary-color);
}

.album-downloads h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(240, 200, 8, 0.3);
}

.download-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 200, 8, 0.4);
    color: white;
}

.download-btn:active {
    transform: translateY(0);
}

.download-btn i {
    font-size: 18px;
}

@media (max-width: 768px) {
    .download-btn {
        width: 100%;
        justify-content: center;
        padding: 18px 25px;
        font-size: 18px;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.review-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.review-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.review-card blockquote {
    font-size: 18px;
    line-height: 1.6;
    color: var(--dark-color);
    font-style: italic;
    margin: 0 0 30px 0;
    padding: 0;
    border: none;
    flex-grow: 1;
    position: relative;
}

.review-card blockquote::before {
    content: '"';
    font-size: 4em;
    color: var(--primary-color);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.review-card blockquote::after {
    content: '"';
    font-size: 4em;
    color: var(--primary-color);
    position: absolute;
    bottom: -40px;
    right: -10px;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.review-author {
    margin-bottom: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.review-author h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0 0 5px 0;
}

.review-author p {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 500;
    margin: 0;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(240, 200, 8, 0.3);
}

.read-more-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 200, 8, 0.4);
    color: white;
}

.read-more-btn:active {
    transform: translateY(0);
}

.read-more-btn i {
    font-size: 12px;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .review-card {
        padding: 30px 25px;
    }
    
    .review-card blockquote {
        font-size: 16px;
    }
    
    .review-author h3 {
        font-size: 18px;
    }
    
    .read-more-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 25px;
        font-size: 16px;
    }
}

/* Contact Page Styles */
.contact-page {
    color: white;
}

.contact-page main,
.contact-page .contact-hero,
.contact-page .contact-form-section {
    background-color: #2a2a2a;
}

/* Cabeçalho da página de contato usa os estilos padrão */

.contact-hero {
    padding: 60px 0 40px;
    text-align: left;
}

.contact-title {
    font-size: 3.5em;
    font-weight: bold;
    color: var(--primary-color);
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-email {
    font-size: 1.2em;
    color: white;
    margin: 0;
}

.contact-form-section {
    padding: 40px 0 80px;
}

.contact-form {
    max-width: 800px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.form-row:first-child {
    grid-template-columns: 1fr 1fr;
}

.form-row:first-child .message-group {
    grid-row: 1 / 5;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid #555;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

/* Cores específicas para cada campo (como no original) */
.form-group:nth-child(1) input { border-color: #4CAF50; } /* Verde - Nome */
.form-group:nth-child(2) textarea { border-color: #9C27B0; } /* Roxo - Mensagem */
.form-row:nth-child(2) .form-group input { border-color: #F44336; } /* Vermelho - Sobrenome */
.form-row:nth-child(3) .form-group input { border-color: #2196F3; } /* Azul - Email */
.form-row:nth-child(4) .form-group input { border-color: #FF9800; } /* Laranja - Assunto */

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin: 30px 0;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-group label {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    text-transform: none;
    letter-spacing: normal;
    color: #ccc;
}

.submit-btn {
    background-color: var(--primary-color);
    color: #2a2a2a;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.success-message {
    background-color: rgba(76, 175, 80, 0.1);
    border: 2px solid #4CAF50;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    margin-top: 40px;
}

.success-message h3 {
    color: #4CAF50;
    font-size: 2em;
    margin: 0 0 20px 0;
}

.success-message p {
    color: white;
    font-size: 1.1em;
    line-height: 1.6;
    margin: 0;
}

.contact-page .footer {
    background-color: #1a1a1a;
    border-top: 1px solid #444;
}

.contact-page .footer h4,
.contact-page .footer p,
.contact-page .footer a {
    color: white;
}

.contact-page .footer a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2.5em;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-row:first-child {
        grid-template-columns: 1fr;
    }
    
    .form-row:first-child .message-group {
        grid-row: auto;
    }
    
    .contact-form {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 2em;
    }
    
    .contact-hero {
        padding: 40px 0 30px;
    }
    
    .contact-form-section {
        padding: 30px 0 60px;
    }
}
