/* ==========================
   Fontes e Resets
========================== */
@font-face {
  font-display: block;
  font-family: Roboto;
  src: url(https://assets.brevo.com/font/Roboto/Latin/normal/normal/7529907e9eaf8ebb5220c5f9850e3811.woff2) format("woff2"),
       url(https://assets.brevo.com/font/Roboto/Latin/normal/normal/25c678feafdc175a70922a116c9be3e7.woff) format("woff");
}
@font-face {
  font-display: fallback;
  font-family: Roboto;
  font-weight: 600;
  src: url(https://assets.brevo.com/font/Roboto/Latin/medium/normal/6e9caeeafb1f3491be3e32744bc30440.woff2) format("woff2"),
       url(https://assets.brevo.com/font/Roboto/Latin/medium/normal/71501f0d8d5aa95960f6475d5487d4c2.woff) format("woff");
}
@font-face {
  font-display: fallback;
  font-family: Roboto;
  font-weight: 700;
  src: url(https://assets.brevo.com/font/Roboto/Latin/bold/normal/3ef7cf158f310cf752d5ad08cd0e7e60.woff2) format("woff2"),
       url(https://assets.brevo.com/font/Roboto/Latin/bold/normal/ece3a1d82f18b60bcce0211725c476aa.woff) format("woff");
}

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

body {
  background-color: #FFF5F5;
  color: #2E2E4F;
  font-family: 'Roboto', sans-serif;
}

#sib-container input:-ms-input-placeholder{text-align:left;font-family:'Roboto',sans-serif;color:#c0ccda;}
#sib-container input::placeholder{text-align:left;font-family:'Roboto',sans-serif;color:#c0ccda;}
#sib-container textarea::placeholder{text-align:left;font-family:'Roboto',sans-serif;color:#c0ccda;}
#sib-container a{text-decoration:underline;color:#2BB2FC;}

/* ==========================
   Cabeçalho e Navegação
========================== */
header{
  background: #FFF9E5;
  padding: 1rem 2rem;
  box-shadow:0 2px 5px rgba(0,0,0,0.1);
  position:sticky;
  top:0;
  z-index:1000;
  transition: background 0.4s ease-out, box-shadow 0.4s ease-out;
}
header.scrolled{
  background:rgba(255, 249, 229, 0.9);
  box-shadow:0 4px 10px rgba(0,0,0,0.1);
  backdrop-filter: blur(5px);
}
.nav-container{display:flex;justify-content:space-between;align-items:center;max-width:1200px;margin:0 auto;}
.logo img{height:50px;transition:height 0.3s ease;}
nav{display:flex;align-items:center;gap:1rem;}
nav ul{list-style:none;display:flex;gap:1.5rem;align-items: center;}
nav ul li a{text-decoration:none;color:#2E2E4F;font-weight:600;font-size:1rem;transition:color 0.3s ease,transform 0.2s ease; padding: 0.5rem 0;}
nav ul li a:hover{color:#FF6F91;}
nav ul li a i { margin-left: 0.3rem; font-size: 0.8em; }

/* Dropdown */
.dropdown { position: relative; display: inline-block; }
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #FFF9E5;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 8px;
  padding: 0.5rem 0;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.dropdown-content a { color: #2E2E4F; padding: 12px 16px; text-decoration: none; display: block; font-size: 0.95rem; }
.dropdown-content a:hover { background-color: #FFF5F5; color: #FF6F91;}
.dropdown:hover .dropdown-content { display: block; opacity: 1; transform: translateY(0);}

.language-selector{display:flex;align-items:center; margin-left: 1rem;}
.language-selector select{background-color:#F5F5F5;color:#2E2E4F;border:1px solid #C0CCD9;border-radius:5px;padding:0.5rem;font-size:0.9rem;cursor:pointer;transition:background-color 0.3s ease;}
.language-selector select:focus{outline:none;background-color:#FFF5F5;}
.hamburger{display:none;flex-direction:column;justify-content:space-between;width:30px;height:20px;cursor:pointer;}
.hamburger span{width:100%;height:3px;background-color:#2E2E4F;transition:all 0.3s ease;}
.hamburger.active span:nth-child(1){transform:rotate(45deg) translate(5px,5px);}
.hamburger.active span:nth-child(2){opacity:0;}
.hamburger.active span:nth-child(3){transform:rotate(-45deg) translate(7px,-7px);}

@media (max-width:768px){
  .logo img{height:40px;}
  nav ul{display:none;flex-direction:column;position:absolute;top:70px;left:0;width:100%;background:#FFF5F5;padding:1rem;box-shadow:0 4px 10px rgba(0,0,0,0.1);}
  nav ul.active{display:flex;}
  nav ul li{margin:0.5rem 0; text-align: center;}
  .dropdown .dropbtn { display: none; } /* Oculta os botões principais do dropdown */
  .dropdown-content {
    display: block;
    position: static;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    margin-top: 0;
    opacity: 1;
    transform: none;
  }
  .dropdown-content a { padding: 10px; text-align: center; }
  .hamburger{display:flex;}
  .language-selector{margin-top:0.5rem;}
}

/* ==========================
   Botões e Hero Section
========================== */
.btn{
  background-color:#6B5B95;
  color:#F5F5F5;
  padding:0.8rem 1.5rem;
  text-decoration:none;
  border-radius:25px;
  transition:background-color 0.3s ease,transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  font-weight: 600;
}
.btn:hover{
  background-color:#FF6F91;
  transform:scale(1.05) translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.hero-section{background-size:cover;background-position:center;min-height:100vh;display:flex;align-items:center;justify-content:center;text-align:center;color:#F5F5F5;position:relative;overflow:hidden;}
.hero-overlay{position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.3);z-index:1;}
.hero-content{position:relative;z-index:2;padding:2rem;background-color:rgba(0,0,0,0.3); backdrop-filter: blur(8px); border-radius:15px;box-shadow:0 4px 10px rgba(0,0,0,0.2);display:inline-block;}
.hero-content h1{font-size:5.5rem;margin-bottom:1rem;text-shadow:2px 2px 6px rgba(0,0,0,0.5);color:#FFFFFF;}
.hero-content p{font-size:1.8rem;margin-bottom:2.5rem;text-shadow:2px 2px 4px rgba(0,0,0,0.5);color:#F5F5F5;}
.hero-content .btn{font-size:1.3rem;padding:1.2rem 2.5rem;background-color:#FF6F91;box-shadow:0 4px 15px rgba(255, 111, 145, 0.4);}

@keyframes fadeInUp{from{opacity:0;transform:translateY(20px);}to{opacity:1;transform:translateY(0);}}
.animate{animation:fadeInUp 1s ease-out forwards;}
.hero-content h1.animate{animation-delay:0.2s;}
.hero-content p.animate{animation-delay:0.4s;}
.hero-content .btn.animate{animation-delay:0.6s;}

@keyframes pulse{
  0%{transform:scale(1);box-shadow:0 0 0 0 rgba(255,111,145,0.7);}
  70%{transform:scale(1.05);box-shadow:0 0 0 10px rgba(255,111,145,0);}
  100%{transform:scale(1);box-shadow:0 0 0 0 rgba(255,111,145,0);}
}
.btn.pulse{animation:pulse 2s infinite;}

@media (max-width:768px){
.hero-content h1{font-size:3rem;}
.hero-content p{font-size:1.4rem;}
.hero-content .btn{font-size:1.1rem;padding:1rem 2rem;}
}

/* ==========================
   Restante das Seções
========================== */
section{padding:5rem 2rem;max-width:1200px;margin:0 auto;}
h2{text-align:center;margin-bottom:3rem;font-size:2.8rem;color:#2E2E4F; font-weight: 700;}
.about-section{background-color:#FFF5F5;}
.about-section p{text-align:center;font-size:1.2rem;line-height:1.7;max-width:800px;margin:0 auto;color:#2E2E4F;}
.releases-section{background-color:#F5F5F5;border-radius:8px;padding:3rem;box-shadow:0 2px 5px rgba(0,0,0,0.1);}
.release-card{text-align:center;}
.release-card h3{font-size:2rem;margin-bottom:1rem;color:#2E2E4F;}
.release-card p{font-size:1.1rem;margin-bottom:1.5rem;color:#2E2E4F;}
.release-links{display:flex;justify-content:center;gap:1rem;flex-wrap:wrap;}
.spotify-section{background-color:#FFF5F5;}
.spotify-embed-container{display:flex;flex-wrap:wrap;gap:2rem;justify-content:center;}
.spotify-embed{flex:1 1 300px;max-width:500px;text-align:center;}
.spotify-embed iframe{width:100%;height:300px;border-radius:12px;border:none;}
.spotify-embed .btn{margin-top:1rem;display:inline-block;}
.medium-section{background-color:#F5F5F5;}
.medium-section .article-list{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2rem;margin-bottom:2rem;}
.article-card{background-color:#FFF5F5;padding:1.5rem;border-radius:8px;box-shadow:0 2px 5px rgba(0,0,0,0.1);text-align:center;transition:transform 0.3s ease,box-shadow 0.3s ease;}
.article-card:hover{transform:translateY(-5px);box-shadow:0 6px 15px rgba(255,111,145,0.3);}
.article-card h3{font-size:1.3rem;margin-bottom:1rem;color:#2E2E4F;}
.article-card a{color:#6B5B95;text-decoration:none;transition:color 0.3s ease; font-weight: 600;}
.article-card a:hover{color:#FF6F91;}
.medium-section .btn{display:block;margin:0 auto;text-align:center;max-width:200px;}
.youtube-section{background-color:#FFF5F5;}
.youtube-section .video-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2rem;margin-bottom:2rem;}
.iframe-container{position:relative;padding-bottom:56.25%;height:0;overflow:hidden;}
.iframe-container iframe{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:8px;}
.youtube-section .btn{display:block;margin:0 auto;text-align:center;max-width:200px;}
.video-card{background-color:#F5F5F5;border-radius:8px;box-shadow:0 2px 5px rgba(0,0,0,0.1);overflow:hidden;transition:transform 0.3s ease,box-shadow 0.3s ease;}
.video-card:hover{transform:scale(1.05);box-shadow:0 4px 10px rgba(255,204,92,0.3);}
.events-section{background-color:#FFF5F5;}
.events-section .event-card{background-color:#F5F5F5;padding:2rem;border-radius:8px;box-shadow:0 2px 5px rgba(0,0,0,0.1);text-align:center;}
.event-card h3{font-size:1.8rem;margin-bottom:1rem;color:#2E2E4F;}
.event-card p{font-size:1.1rem;margin-bottom:1rem;color:#2E2E4F;}
.gallery-section{background-color:#FFF5F5;padding:4rem 2rem;text-align:center;}
.gallery-section h2{font-size:2.5rem;color:#2E2E4F;margin-bottom:2rem;}
.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin:20px 0;}
.gallery-grid img{width:100%;height:200px;object-fit:cover;border-radius:8px;cursor:pointer;transition:transform 0.3s ease,box-shadow 0.3s ease;box-shadow:0 2px 5px rgba(0,0,0,0.1);}
.gallery-grid img:hover{transform:scale(1.05);box-shadow:0 4px 10px rgba(255,204,92,0.3);}
.blog-section{background-color:#FFF5F5;padding:4rem 2rem;text-align:center;}
.blog-section h2{font-size:2.5rem;color:#2E2E4F;margin-bottom:1rem;}
.blog-intro{font-size:1.2rem;color:#6B5B95;margin-bottom:2rem;}
.blog-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2rem;}
.blog-post{background-color:#F5F5F5;border-radius:8px;box-shadow:0 2px 5px rgba(0,0,0,0.1);overflow:hidden;transition:transform 0.3s ease,box-shadow 0.3s ease;}
.blog-post:hover{transform:scale(1.05);box-shadow:0 4px 10px rgba(0,0,0,0.2);}
.blog-post img{width:100%;height:200px;object-fit:cover;}
.blog-post h3{font-size:1.5rem;color:#2E2E4F;margin:1rem;}
.blog-post p{font-size:1rem;color:#6B5B95;margin:0 1rem 1rem;}
.blog-post .btn{display:inline-block;margin:1rem;padding:0.8rem 1.5rem;}
.testimonials-section{background-color:#FFF5F5;padding:4rem 2rem;text-align:center;}
.testimonials-section h2{font-size:2.5rem;color:#2E2E4F;margin-bottom:2rem;}
.testimonial-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2rem;}
.testimonial-card{background-color:#F5F5F5;padding:2rem;border-radius:8px;box-shadow:0 2px 5px rgba(0,0,0,0.1);transition:transform 0.3s ease,box-shadow 0.3s ease;text-align:center;}
.testimonial-card:hover{transform:scale(1.05);box-shadow:0 4px 10px rgba(255,204,92,0.3);}
.testimonial-card p{font-size:1.1rem;line-height:1.6;margin-bottom:1rem;color:#2E2E4F;}
.testimonial-card .author{font-style:italic;color:#6B5B95;}
.newsletter-section{text-align:center;background-color:#6B5B95;padding:3rem;border-radius:8px;box-shadow:0 2px 5px rgba(0,0,0,0.1);}
.newsletter-section h2{color:#F5F5F5;}
.newsletter-section p{font-size:1.1rem;margin-bottom:1.5rem;color:#F5F5F5;}
.sib-form{background-color:#6B5B95 !important;}
#sib-container{max-width:400px !important;background-color:#F9B9F7 !important;margin:0 auto;}
#sib-container p{color:#2E2E4F !important;}
.social-section{text-align:center;background-color:#F5F5F5;}
.social-links{display:flex;justify-content:center;gap:2rem;}
.social-links a{text-decoration:none;color:#2E2E4F;font-size:1.2rem;display:flex;align-items:center;gap:0.5rem;transition:color 0.3s ease;}
.social-links a:hover{color:#FF6F91;}
.contact-section{text-align:center;background-color:#FFF5F5;}
.contact-section p{font-size:1.1rem;margin-bottom:1rem;color:#2E2E4F;}
.contact-section a{color:#6B5B95;text-decoration:none;transition:color 0.3s ease;}
.contact-section a:hover{color:#FF6F91;}
footer{background-color:#2E2E4F;color:#F5F5F5;text-align:center;padding:1.5rem;margin-top:2rem;}
footer p{font-size:0.9rem;}
.modal{display:none;position:fixed;z-index:1000;left:0;top:0;width:100%;height:100%;overflow:auto;background-color:rgba(0,0,0,0.8);}
.modal-content{margin:auto;display:block;max-width:80%;max-height:80%;border-radius:8px;}
.modal-content:hover{transform:none;box-shadow:none;}
.close{position:absolute;top:20px;right:35px;color:#fff;font-size:40px;font-weight:bold;cursor:pointer;}
.close:hover,.close:focus{color:#ff6f91;text-decoration:none;cursor:pointer;}
#caption{text-align:center;color:#fff;padding:10px 0;font-size:18px;}
.release-card {
  position: relative;
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.release-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.release-links .btn {
  margin: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.release-links .btn:hover {
  background-color: #ff6f91;
  transform: scale(1.1);
}

.nature-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 20px 0;
}

.nature-video-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%; /* Garantir que o contêiner tenha largura */
  height: 200px; /* Definir altura fixa para consistência */
}

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

.nature-video {
  width: 100%;
  height: 100%; /* Garantir que o vídeo preencha o contêiner */
  display: block;
  border-radius: 15px;
  object-fit: cover; /* Garante que o vídeo se ajuste ao espaço disponível */
}

.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 10px;
  text-align: center;
  font-size: 1.1em;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nature-video-card:hover .video-overlay {
  opacity: 1;
}

.nature-video-card video::-webkit-media-controls-panel {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.nature-video-card video::-webkit-media-controls-play-button,
.nature-video-card video::-webkit-media-controls-volume-slider,
.nature-video-card video::-webkit-media-controls-timeline {
  filter: brightness(1.2);
}

@media (max-width: 768px) {
  .nature-video-card {
    height: 200px; /* Altura fixa para dispositivos móveis */
  }

  .nature-video {
    width: 100%;
    height: 100%;
  }
}

.nature-sounds-section {
  padding: 50px 20px;
  text-align: center;
  background-color: #f9f9f9;
}
.nature-sounds-section h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #333;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Estilo atualizado para a seção Eventos */
.events-section {
  padding: 50px 20px;
  text-align: center;
  background-color: #FFF5F5; /* Fundo rosa claro */
}

.events-section h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #6B5B95; /* Roxo escuro */
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.event-card {
  background: #F5F5F5; /* Fundo neutro claro */
  border-radius: 15px; /* Bordas arredondadas */
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Sombra suave */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(255, 111, 145, 0.3); /* Sombra rosa ao passar o mouse */
}

.event-card h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #6B5B95; /* Roxo escuro */
}

.event-card p {
  font-size: 1em;
  color: #666; /* Texto cinza */
  margin-bottom: 15px;
}

.event-card .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #FF6F91; /* Rosa vibrante */
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.event-card .btn:hover {
  background-color: #6B5B95; /* Roxo escuro ao passar o mouse */
  transform: scale(1.05); /* Leve aumento no hover */
}

/* Atualização para a área Blog no Medium */
.article-card {
  background-color: #FFF5F5;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
  transform: translateY(-5px); /* Elevação ao passar o mouse */
  box-shadow: 0 6px 15px rgba(255, 111, 145, 0.3); /* Sombra rosa */
}

.article-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #2E2E4F;
}

.article-card a {
  color: #6B5B95;
  text-decoration: none;
  transition: color 0.3s ease;
}

.article-card a:hover {
  color: #FF6F91; /* Rosa vibrante ao passar o mouse */
}
