/* Vozes do Brasil - Música Brasileira */
/* Tema: Nacional Cultural - Cores da bandeira (verde, amarelo, azul) em tons artísticos */
/* Cores: Verde Brasil (#009739), Amarelo Ouro (#FFD700), Azul Celeste (#002776) */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #F0F8FF 0%, #FFF8DC 30%, #F0FFF0 70%, #E6F3FF 100%);
    background-attachment: fixed;
    color: #2C5530;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 151, 57, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 40% 90%, rgba(0, 39, 118, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

h1, h2, h3, h4 {
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    line-height: 1.2;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 151, 57, 0.92);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-bottom: 3px solid #FFD700;
    box-shadow: 0 8px 32px rgba(0, 151, 57, 0.15),
                0 2px 8px rgba(255, 215, 0, 0.2);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.5) 50%, 
        transparent 100%);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    font-size: 2rem;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.logo h1 {
    font-size: 1.8rem;
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.tagline {
    font-size: 0.7rem;
    color: #FFD700;
    font-style: italic;
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a:focus {
    background: #FFD700;
    color: #009739;
    outline: 2px solid #FFD700;
    outline-offset: 2px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #002776;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::before,
.nav-menu a:focus::before {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: 2px solid #FFD700;
    padding: 0.5rem;
    border-radius: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #FFD700;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(230, 243, 255, 0.85) 30%,
        rgba(240, 255, 240, 0.85) 70%,
        rgba(255, 248, 220, 0.95) 100%);
    padding-top: 100px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    animation: heroGlow 15s ease-in-out infinite alternate;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 151, 57, 0.06) 0%, transparent 70%);
    animation: heroGlow 12s ease-in-out infinite alternate-reverse;
}

@keyframes heroGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 30px) scale(1.1); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4rem;
    color: #009739;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1),
                 0 0 30px rgba(0, 151, 57, 0.2);
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: titlePulse 3s ease-in-out infinite alternate;
    font-weight: 800;
    letter-spacing: -1px;
}

@keyframes titlePulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.02); }
}

.hero-title .highlight {
    color: #FFD700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8),
                 0 0 50px rgba(255, 215, 0, 0.4),
                 3px 3px 10px rgba(0, 0, 0, 0.2);
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #2C5530;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 215, 0, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 151, 57, 0.2);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #009739;
    padding: 1.5rem;
    border-radius: 20px;
    border: 3px solid #FFD700;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(255, 215, 0, 0.1) inset;
    min-width: 120px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.feature:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 16px 48px rgba(0, 151, 57, 0.2),
                0 0 0 2px rgba(255, 215, 0, 0.3) inset;
    border-color: #009739;
}

.feature:hover::before {
    transform: scale(1);
}

.feature i {
    font-size: 2.5rem;
    color: #002776;
}

.feature span {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 3px solid;
    font-size: 1rem;
    min-width: 200px;
    text-align: center;
}

.cta-button.primary {
    background: linear-gradient(135deg, #009739 0%, #00B347 50%, #FFD700 100%);
    background-size: 200% 200%;
    border-color: #009739;
    color: #FFFFFF;
    box-shadow: 0 8px 24px rgba(0, 151, 57, 0.3),
                0 4px 12px rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.cta-button.primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button.primary:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button.primary:hover,
.cta-button.primary:focus {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 16px 40px rgba(0, 151, 57, 0.4),
                0 8px 20px rgba(255, 215, 0, 0.3),
                0 0 0 3px rgba(255, 215, 0, 0.2);
    outline: none;
    animation: none;
    background-position: 100% 50%;
}

.cta-button.secondary {
    border-color: #002776;
    color: #002776;
    background: rgba(255, 255, 255, 0.9);
}

.cta-button.secondary:hover,
.cta-button.secondary:focus {
    background: #002776;
    color: #FFFFFF;
    transform: translateY(-2px);
    outline: 2px solid #FFD700;
    outline-offset: 2px;
}

/* Hero Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.1;
}

.brazilian-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 25% 25%, #009739 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, #FFD700 2px, transparent 2px),
        radial-gradient(circle at 75% 25%, #002776 2px, transparent 2px),
        radial-gradient(circle at 25% 75%, #FFFFFF 1px, transparent 1px);
    background-size: 50px 50px;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.floating-notes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.note {
    position: absolute;
    font-size: 2rem;
    color: #FFD700;
    opacity: 0.6;
    animation: floatNote 8s ease-in-out infinite;
}

.note:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.note:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.note:nth-child(3) {
    top: 40%;
    left: 60%;
    animation-delay: 4s;
}

.note:nth-child(4) {
    top: 80%;
    left: 20%;
    animation-delay: 6s;
}

@keyframes floatNote {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
        opacity: 0.8;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Featured Playlist */
.featured-playlist {
    padding: 5rem 0;
    background: linear-gradient(135deg, #E6F3FF 0%, #FFF8DC 100%);
}

.featured-playlist h2 {
    text-align: center;
    font-size: 3rem;
    color: #009739;
    margin-bottom: 3rem;
}

.playlist-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(0, 151, 57, 0.2);
    transition: all 0.3s ease;
}

.playlist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #009739;
}

.playlist-card.featured {
    background: linear-gradient(135deg, rgba(0, 151, 57, 0.05), rgba(0, 39, 118, 0.05));
}

.playlist-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.playlist-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.play-button-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #FFD700, #009739);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.playlist-image:hover .play-button-large {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.playlist-content h3 {
    color: #009739;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.playlist-content p {
    color: #2C5530;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.playlist-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.playlist-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #002776;
    font-size: 0.9rem;
}

.playlist-meta i {
    color: #FFD700;
}

.playlist-genres {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.genre {
    background: rgba(0, 151, 57, 0.1);
    color: #009739;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid #009739;
}

/* Artists Section */
.artists-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #FFF8DC 0%, #F0FFF0 100%);
}

.artists-section h2 {
    text-align: center;
    font-size: 3rem;
    color: #009739;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #2C5530;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.artist-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08),
                0 2px 8px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.artist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 151, 57, 0.03), rgba(255, 215, 0, 0.03));
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.artist-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 151, 57, 0.15),
                0 8px 24px rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
}

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

.artist-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1) saturate(1);
}

.artist-card:hover .artist-image img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1) saturate(1.2);
}

.artist-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #FFD700, #009739);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
}

.artist-image:hover .artist-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.artist-content {
    padding: 1.5rem;
}

.artist-content h3 {
    color: #009739;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.artist-location {
    color: #002776;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.artist-bio {
    color: #2C5530;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.artist-genres {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.artist-genres span {
    background: rgba(0, 39, 118, 0.1);
    color: #002776;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 39, 118, 0.3);
}

/* Playlists Section */
.playlists-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F0FFF0 0%, #E6F3FF 100%);
}

.playlists-section h2 {
    text-align: center;
    font-size: 3rem;
    color: #009739;
    margin-bottom: 1rem;
}

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

.playlist-card {
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 151, 57, 0.2);
    transition: all 0.3s ease;
}

.playlist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #009739;
}

.playlist-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

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

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

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #FFD700, #009739);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
}

.playlist-image:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.playlist-content {
    padding: 1.5rem;
}

.playlist-content h3 {
    color: #009739;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.playlist-content p {
    color: #2C5530;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.playlist-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #002776;
}

/* Genres Section */
.genres-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #E6F3FF 0%, #FFF8DC 100%);
}

.genres-section h2 {
    text-align: center;
    font-size: 3rem;
    color: #009739;
    margin-bottom: 3rem;
}

.genres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.genre-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.genre-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, 
        rgba(0, 151, 57, 0.08), 
        rgba(255, 215, 0, 0.08), 
        rgba(0, 39, 118, 0.08),
        rgba(0, 151, 57, 0.08));
    animation: rotateGradient 8s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.genre-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12),
                0 0 0 3px rgba(255, 215, 0, 0.3);
    border-color: transparent;
}

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

.genre-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.genre-card:hover .genre-icon {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.genre-card.samba .genre-icon { color: #FFD700; }
.genre-card.mpb .genre-icon { color: #009739; }
.genre-card.forro .genre-icon { color: #002776; }
.genre-card.sertanejo .genre-icon { color: #8B4513; }
.genre-card.bossa .genre-icon { color: #20B2AA; }
.genre-card.regional .genre-icon { color: #FF6347; }

.genre-card h3 {
    color: #009739;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.genre-card p {
    color: #2C5530;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.genre-count {
    display: block;
    color: #002776;
    font-weight: 600;
    font-size: 0.9rem;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #FFF8DC 0%, #F0FFF0 100%);
}

.about-section h2 {
    text-align: center;
    font-size: 3rem;
    color: #009739;
    margin-bottom: 3rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h3 {
    color: #009739;
    margin: 2.5rem 0 1rem 0;
    font-size: 1.8rem;
}

.about-text h4 {
    color: #2C5530;
    margin: 2rem 0 1rem 0;
    font-size: 1.3rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #2C5530;
}

.about-text ul {
    margin: 1rem 0 2rem 0;
    padding-left: 2rem;
}

.about-text li {
    margin-bottom: 0.8rem;
    color: #2C5530;
}

.about-text li strong {
    color: #002776;
}

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

.stat-item {
    background: rgba(0, 151, 57, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid rgba(0, 151, 57, 0.3);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #009739;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #2C5530;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-gallery {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.gallery-main img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.gallery-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.stat-circle {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    border: 2px solid #FFD700;
    min-width: 80px;
}

.stat-big {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #009739;
}

.stat-desc {
    font-size: 0.7rem;
    color: #2C5530;
    margin-top: 0.3rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F0FFF0 0%, #E6F3FF 100%);
}

.contact-section h2 {
    text-align: center;
    font-size: 3rem;
    color: #009739;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: #009739;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.contact-info p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #2C5530;
}

.contact-details p {
    margin-bottom: 1rem;
    color: #2C5530;
}

.contact-details strong {
    color: #002776;
}

.contact-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(0, 151, 57, 0.1);
    border-radius: 8px;
    color: #2C5530;
    border: 2px solid rgba(0, 151, 57, 0.2);
}

.contact-feature i {
    color: #FFD700;
    font-size: 1.2rem;
}

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

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #009739;
    font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(0, 151, 57, 0.3);
    border-radius: 8px;
    background: #FFFFFF;
    color: #2C5530;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.checkbox-group {
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #009739;
}

.submit-button {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(45deg, #009739, #FFD700);
    color: #FFFFFF;
    border: 2px solid #009739;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.submit-button:hover,
.submit-button:focus {
    background: #FFFFFF;
    color: #009739;
    border-color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 151, 57, 0.4);
    outline: 2px solid #002776;
    outline-offset: 2px;
}

/* Authority Links */
.authority-links {
    padding: 3rem 0;
    background: rgba(0, 151, 57, 0.1);
    text-align: center;
}

.authority-links h3 {
    color: #009739;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.links-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.authority-link {
    color: #002776;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border: 2px solid #FFD700;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    background: #FFFFFF;
}

.authority-link:hover,
.authority-link:focus {
    background: #FFD700;
    border-color: #009739;
    color: #009739;
    transform: translateY(-2px);
    outline: 2px solid #002776;
    outline-offset: 2px;
}

/* Footer */
.main-footer {
    background: #009739;
    border-top: 2px solid #FFD700;
    color: #FFFFFF;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    padding: 3rem 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo .logo-icon {
    font-size: 1.5rem;
    color: #FFD700;
}

.footer-logo h3 {
    color: #FFD700;
    margin: 0;
    font-size: 1.3rem;
}

.footer-logo p {
    color: #FFFFFF;
    font-style: italic;
    margin: 0;
    font-size: 0.9rem;
}

.footer-links a {
    display: block;
    color: #FFFFFF;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover,
.footer-links a:focus {
    color: #FFD700;
    outline: 2px solid #FFFFFF;
    outline-offset: 2px;
}

.footer-authority a {
    display: block;
    color: #FFD700;
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-authority a:hover,
.footer-authority a:focus {
    color: #FFFFFF;
    outline: 2px solid #FFD700;
    outline-offset: 2px;
}

.footer-bottom {
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    padding: 1.5rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Audio Player */
.audio-player {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 151, 57, 0.95);
    backdrop-filter: blur(10px);
    border-top: 2px solid #FFD700;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.audio-player.active {
    transform: translateY(0);
}

.player-content {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.player-info img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    border: 2px solid #FFD700;
}

.player-text h4 {
    color: #FFD700;
    margin: 0;
    font-size: 1rem;
}

.player-text span {
    color: #FFFFFF;
    font-size: 0.8rem;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0 2rem;
}

.player-btn {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.player-btn:hover,
.player-btn:focus {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
    outline: 2px solid #FFD700;
    outline-offset: 2px;
}

.play-btn {
    background: linear-gradient(45deg, #FFD700, #009739);
    color: #FFFFFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.player-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    color: #FFFFFF;
    font-size: 0.9rem;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFD700, #009739);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s ease;
}

/* Load More */
.load-more {
    text-align: center;
}

.load-more-btn {
    background: linear-gradient(45deg, #009739, #FFD700);
    color: #FFFFFF;
    border: 2px solid #009739;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.load-more-btn:hover,
.load-more-btn:focus {
    background: #FFFFFF;
    color: #009739;
    border-color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 151, 57, 0.4);
    outline: 2px solid #002776;
    outline-offset: 2px;
}

/* Scrollbar Personalizada */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #E6F3FF;
    border: 2px solid #009739;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #009739, #FFD700);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #FFD700, #009739);
}
