
:root {
    --brand-primary-400: #FA8805;
    --brand-primary-300: #F99F38;
    --brand-primary-200: #FDB740;
    --brand-primary-100: #FFE6B4;  
    --brand-secondary-400: #23859F;
    --brand-secondary-300: #5FA2B4;
    --brand-secondary-200: #B3D8DE;
    --brand-secondary-100: #D3E7EA;  
    --neutral-primary-50: #FEF4DD;
    --neutral-primary-25: #FEF9EF;
    --neutral-primary-10: #FEFDF9;  
    --neutral-secondary-50: #DFF4F7;
    --neutral-secondary-25: #F5FCFF;
    --neutral-secondary-10: #FAFEFF;  
    --primary-black:#291800;
    --secondary-black: #0E1719;
  
    /*fontes*/
    --font-s-10: 0.625rem;
    --font-s-12: 0.75rem; 
    --font-s-14: 0.875rem;  
    --font-m-16: 1rem;
    --font-m-20: 1.25rem;
    --font-m-24: 1.5rem; 
    --font-m-28: 1.75rem;  
    --font-l-30: 1.875rem; 
    --font-l-32: 2rem;
    --font-l-40: 2.5rem;  
    --font-x-48: 3rem;
    --font-x-56: 3.5rem;  
    --font-xl-80: 5rem;   
  }
html, body, main, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
a{
  text-decoration: none;
}
button{
  background-color: transparent;
  border: 0;
  margin: 0;
  padding: 0;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
.sep-btt-40{
  margin-bottom: 40px;
}
.sep-btt-80{
  margin-bottom: 80px;
}
body {
  cursor: auto;
  font-family: "Lato", sans-serif;
  line-height: 1.25;
  -webkit-font-smoothing: antialiased;
  color: var(--primary-black);
  background-color: var(--neutral-primary-25);
}
/* Estilo para o círculo do cursor */
#cursor-point {
  width: 8px;
  height: 8px;
  background-color: #FDB740;
  border-radius: 50%;
  position: fixed;
  z-index: 99999;
}
/* Estilo da Barra de Rolagem */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: transparent; 
}
::-webkit-scrollbar-thumb {
  background: var(--brand-primary-300)
}
::-webkit-scrollbar-thumb:hover {
  background: var(--brand-secondary-400);
}
/* Estilo de Texto Selecionado */
::selection {
  background-color: var(--brand-secondary-300); 
  color: var(--neutral-primary-10);
}
::-moz-selection {
  background-color: var(--brand-secondary-300); 
  color: var(--neutral-primary-10);
}
/*botão flutuante*/
.container-whats {
  position: fixed;
  bottom: 32px;
  right: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}
.whatsapp-button {
  background-color: #25d366; /* Verde WhatsApp */
  border-radius: 50%;
  width: 64px;
  height: 64px;
  cursor: pointer;
  margin: 0 auto;
  box-shadow: 0px 4px 8px 0px rgba(41, 24, 0, 0.48);
}
.whatsapp-icon {
  width: 56px;
  height: 56px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/*fim botao flutuante*/

button{
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: center; 
}
button:hover{
  cursor: pointer;
}
a:hover{
  cursor: pointer;
}
.legivel {
  filter: none !important;
}
/*efeito blur no conteudo*/
.js-blur {
  filter: blur(3px);
  transition: filter 0.5s ease; 
}
.js-blur.legivel {
  filter: none; 
}
.js-url{
  color: var(--brand-secondary-400);
}
/*navbar top*/
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
}
.top-nav-bg{
  background-color: rgba(254, 249, 239, 0.7); 
  backdrop-filter: blur(8px);
}
.top-nav{
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: auto;
  padding: 16px 12px;
}
.top-nav ul li span{
  margin: 0 auto;
  margin-top: 4px;
  color: var(--brand-primary-300);
  font-family: "Lato", sans-serif;
  font-size: var(--font-s-10);
}
/*menu*/
.no-scroll {
  overflow: hidden;
}
.menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--brand-secondary-300);
  transition: left 0.3s ease;
}
.menu.open {
  left: 0; 
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(223, 244, 247, 0.9);
  opacity: 0;
  visibility: hidden; 
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
.overlay.active {
  opacity: 1; 
  visibility: visible; 
  transition-delay: 0s;
}
.menu.active {
  left: 0;
}
.menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 32px;
}
.logo-menu{
  width: 80%;
  margin: 40px auto 64px auto;
}
.close-menu-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; 
}
.close-button {
  background: none;
  display: flex;
  flex-direction: column;
  padding: 6px;
  border-radius: 2px;
  transition: background 0.3s ease;
  width: auto;
}
.close-button:hover {
  background: var(--brand-primary-300);  
}
.close-label {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: var(--font-s-10);
  color: var(--neutral-primary-10);
  margin-top: 4px;
}
.links{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 64px;
}
.links li a{
  font-family: "Pero";
  font-weight:200;
  color: var(--brand-secondary-100);
  font-size: var(--font-m-24);
  transition: color 0.3s ease;
}
.links li a:hover{
  color: var(--neutral-secondary-10);
}
.link-active {
  color: var(--brand-primary-100) !important;
  font-weight:400 !important;
  position: relative; 
  font-size: var(--font-m-24);
}
.link-active::before {
  content: '•';
  font-size: 0.625em;
  font-weight: 200;
  position: absolute; 
  top: -8px ;
  left: -10px;
}
.social-menu{
  display: flex;
  gap: 80px;
  margin-top: 48px;
  width: auto;
}
/*provisional: hide spotify icon*/
.social-menu li:nth-child(2){
  display: none;
}
.social-menu li a img:hover{
  border-radius: 4px;
  background-color: var(--brand-secondary-200);
  transition: background-color 0.3s ease;
}
.menu-cta{
  font-family: "Pero";
  color: var(--brand-secondary-300);
  font-size: var(--font-m-16);
  font-weight:800;
  padding: 16px 20px;  
  border: 1px solid var(--brand-secondary-300);
  border-radius: 8px;
  background-color: var(--neutral-secondary-10);
  transition: background-color 0.3s ease;
}
.menu-cta:hover{
  color: var(--brand-primary-300);
  border: 1px solid var(--brand-primary-400);
  background-color: var(--neutral-primary-50);
}
.btn-cta-top button {
  font-family: "Lato", sans-serif;
  color: var(--brand-primary-300);
  font-size: var(--font-s-12);
  font-weight: bold;
  border: 1px solid var(--brand-primary-300);
  padding: 10px 16px;
  border-radius: 8px;
  background-color: var(--neutral-primary-25);
  transition: background-color 0.3s ease; 
}
.btn-cta-top button:hover {
  color: var(--neutral-primary-10);
  background-color: var(--brand-primary-300)
}



/*INSTAGRAM SESSÃO MOBILE*/
.container-insta{
  margin: 0 16px;
}
.f-social-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 80px auto;
}

.f-social-mobile ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px; 
  margin: 0;
  padding: 0;
}
.f-social-mobile ul li img {
  max-width: 100%;
  height: auto;
}

.f-social-mobile ul li a {
  display: flex;
  text-align: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  color: var(--brand-primary-400);
  font-size: var(--font-l-32) ;
}

/*ACCORDION AJSTES*/
.acc-ajst-1{
  margin-bottom: 172px !important; 
}  
.acc-ajst-2{
  margin-bottom: 242px !important; 
}
.acc-ajst-3{
  margin-bottom: 190px !important; 
}
  
/*RESPONSIVE*/

/*large phones*/
@media only screen and (min-width: 390px){
    .links{
        gap: 2rem;
        margin-bottom: 80px;
    }
    .logo-menu {
        margin: 80px auto;
    } 
      .social-menu {    
        margin-top: 80px;
    }
    .h-acc-ajst-2 {
      margin-bottom: 112px !important;
  }
}
/*small tablets*/
@media only screen and (min-width: 430px){
    .logo-menu{
        width: 100%;
        margin: 80px auto 104px auto;
    }
    .link-active, .links li a {
        font-size: var(--font-l-32);
    }
    .links {
        margin-bottom: 104px;
    }
    .menu-cta {      
        font-size: var(--font-m-20);
        font-weight: 400;
        padding: 20px 24px;
    }
    .acc-ajst-1 {
      margin-bottom: 132px !important;
  }
    .acc-ajst-3{
      margin-bottom: 144px !important; 
    
  }
}
/*tablets*/
@media only screen and (min-width: 600px){

    .close-menu-container {
        display: flex;
        flex-direction: row;
        gap: 200px;
        margin: 16px auto 160px auto;
    }
    .logo-menu {
        margin: 16px auto;
    }
    .logo-menu {
        order: 1;
    }
    .close-button {
        order: 2; 
    }
    .acc-ajst-3{
      margin-bottom: 48px !important; 
    }
}
/*notebook - Most resolution used in Brasil is 1360px (use 80px margin in Figma)*/
@media only screen and (min-width: 1200px){
    .container-whats {
      right: 72px;
    }
    .whatsapp-button {
      width: 80px;
      height: 80px;
    }
    .top-nav {
      width: auto;
      padding: 16px 48px;
    }
    .btn-cta-top button {
      font-size: var(--font-s-14);
    }
    .close-menu-container{
      gap:92px
    }
    .menu-content{
      margin-top: 16px;
    }    
    .close-menu-container, .links{        
      margin-bottom: 48px;
    }
    .menu {
      width: 452px;
      transition: left 0.8s ease; 
    }
    .social-menu {
      margin-top: 48px;
    }  
    .menu-cta {
      font-size: var(--font-m-20);
      font-weight: 400;
      padding: 16px 24px;
    }
    .link-active, .links li a {
      font-size: var(--font-m-24);
    }
    .acc-ajst-3{
      margin-bottom: 32px !important; 
    }
    
  }

  /*notebook */
@media only screen and (min-width: 1360px){

  .top-nav {
    width: 1264px;
    padding: 16px 48px;
  }
}

/*large desktop*/

@media only screen and (min-width: 1920px){

    .container-whats {
      right: 104px;
    }
    .top-nav {
        padding: 24px 104px;
        width: 1712px;
    }  
    .menu {
      width: 504px;
      transition: left 0.8s ease; 
    }  
    .close-menu-container{
        margin-bottom: 136px;
    }
    .links {
        gap: 3rem;
        margin-bottom: 104px;
    }
    .link-active, .links li a {
      font-size: var(--font-l-30);
    }
    .social-menu {
        margin-top: 104px;
    }
    .acc-ajst-2 {
      margin-bottom: 42px !important;
  }    
}