#menu2{
  overflow: visible;
}

#menu .logo{
  position: relative;
  z-index: 1000000;
}

#menu2 .menu {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Space between logo and dropdown */
  padding: 10px 20px;
  z-index: 10000;
}

#menu2 .nav {
  display: flex; /* Flex for horizontal layout of links */
  position: relative;
  overflow: visible;
  z-index: 1000000;
}

#menu2 .dropdown {
  margin-left: 32px;
}

#menu2 .nav a {
  text-decoration: none;
  position: relative;
  font-size: 1.6rem;
  padding-bottom: 8px; /* Increased space for the underline */
  display: inline-block; /* Ensures proper positioning for the pseudo-element */
  overflow: hidden; /* Prevents clipping of the pseudo-element */
  text-decoration: none;
  margin: 0 15px;
  z-index: 1;
  color: #D3C2B7;
}

#menu2 .nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 90%; /* Full width of the underline */
  height: 16px; /* Height of the underline */
  background-size: cover; /* Ensure the SVG scales to cover the area */
  background-repeat: no-repeat; /* Prevent repeating the SVG */
  background-position: bottom center; /* Align the SVG at the bottom */
  transform: translateX(-100%); /* Start the underline off-screen */
  opacity: 0; /* Start invisible */
  transition: opacity 0.3s ease, transform 0.5s ease; /* Smooth transition for opacity and transform */
  z-index: 10;
}

#menu2 .nav a:hover::after {
  transform: translateX(0); /* Move the underline into view */
  opacity: 1; /* Make the underline visible */
  animation: penScratch 0.5s forwards ease-in-out; /* Explicit animation speed and easing */
}

/* Specific styles for active link - no animation */
#menu2 .nav a.active::after {
  transform: translateX(0); /* Ensure the underline is in view */
  opacity: 1; /* Ensure the underline is visible */
  transition: none; /* Remove any transition on active state */
  animation: none; /* Disable the penScratch animation */
}

/* Animation keyframes for pen scratch effect */
@keyframes penScratch {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  50% {
    transform: translateX(10%);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Specific styles for each link */
#menu2 .nav a[href="about-us.html"]::after,
#menu2 .nav a.active[href="about-us.html"]::after {
  background-image: url('img/scratchs/scratch-orange.svg');
}

#menu2 .nav a[href="services.html"]::after,
#menu2 .nav a.active[href="services.html"]::after {
  background-image: url('img/scratchs/scratch-pink.svg');
}

#menu2 .nav a[href="contacts.html"]::after,
#menu2 .nav a.active[href="contacts.html"]::after {
  background-image: url('img/scratchs/scratch-purple.svg');
}

#menu2 .nav a[href="about-us.html"]:hover,
#menu2 .nav a.active[href="about-us.html"] {
  color: var(--bs-orange);
}

#menu2 .nav a[href="services.html"]:hover,
#menu2 .nav a.active[href="services.html"] {
  color: #EA1693;
}

#menu2 .nav a[href="contacts.html"]:hover,
#menu2 .nav a.active[href="contacts.html"] {
  color: #C01FE2;
}

/*br*/

#menu2 .nav a[href="sobre.html"]::after,
#menu2 .nav a.active[href="sobre.html"]::after {
  background-image: url('img/scratchs/scratch-orange.svg');
}

#menu2 .nav a[href="servicos.html"]::after,
#menu2 .nav a.active[href="servicos.html"]::after {
  background-image: url('img/scratchs/scratch-pink.svg');
}

#menu2 .nav a[href="contato.html"]::after,
#menu2 .nav a.active[href="contato.html"]::after {
  background-image: url('img/scratchs/scratch-purple.svg');
}

#menu2 .nav a[href="sobre.html"]:hover,
#menu2 .nav a.active[href="sobre.html"] {
  color: var(--bs-orange);
}

#menu2 .nav a[href="servicos.html"]:hover,
#menu2 .nav a.active[href="servicos.html"] {
  color: #EA1693;
}

#menu2 .nav a[href="contato.html"]:hover,
#menu2 .nav a.active[href="contato.html"] {
  color: #C01FE2;
}


h1,h2,h3,h4, h5,p,a{
  font-family: "Inter", sans-serif;
}

.instrument{
  font-family: "Instrument Serif", serif !important;
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25D366; /* Cor de fundo do botão */
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
  color: white; /* Cor do ícone */
  font-size: 30px; /* Tamanho do ícone */
  text-decoration: none;
}

.whatsapp-button:hover {
  transform: scale(1.1); /* Efeito de zoom ao passar o mouse */
}

#arrows{
  position: absolute;
  z-index: 100;
}

p{
  font-size: 1.2rem;
  font-weight: 600;
}

p small{
  color: #ccc;
  font-weight: 600;
}

small{
  display: block;
}

 h1{
  font-size: 4rem;
  font-weight: 700;
 }

 h1 small{
  font-size: 3rem;

 }

 h4{
  font-weight: 800;
  font-size: 1.4rem;
 }

 h4 small{
  font-weight: 600;
  font-size: 1rem;
 }

 .caveat{
  font-family: "Caveat" !important;
 }

 h2{
  font-size: 3rem;
  font-weight: 900;
 }

 h2 small{
  font-size: 2rem;
  font-weight: 400;
  color: #6C7176;
 }


h3{
  font-size: 2.2rem;
  font-weight: 700;
}

 h3 small{
  color: #ccc;
 }

 h5 small{
  color: #333;
 }

.contact-btn a:hover{
  color: #1D1D1F;
}

.center {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
}

.underline{
  background-image: url(img/arrows/yellow-underline.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.highlighter{
  background-image: url(img/arrows/orange-highlighter.png);
  background-repeat: no-repeat;
  background-size: cover;
}

/*Buttons*/

.btn-primary {
  appearance: none;
  background-color: transparent;
  border: 2px solid var(--bs-brown);
  border-radius: 15px;
  box-sizing: border-box;
  color: var(--bs-brown);
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
  min-height: 60px;
  min-width: 0;
  outline: none;
  padding: 16px 24px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 100%;
  will-change: transform;
}

.btn-primary:hover {
  color: #fff;
  background-color: var(--bs-brown);
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
  border: inherit;
}


.btn-secondary{
  appearance: none;
  background-color: var(--bs-brown);
  border: none;
  border-radius: 15px;
  box-sizing: border-box;
  color: white;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
  min-height: 60px;
  min-width: 0;
  outline: none;
  padding: 16px 24px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 100%;
  will-change: transform;
}

.btn-secondary:hover{
  color: #fff;
  background-color: #1A1A1A;
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
  border: inherit;
}

/*Dark Buttons*/

.btn-primary-dark {
  appearance: none;
  background-color: transparent;
  border: 2px solid #F9F8F5;
  border-radius: 15px;
  box-sizing: border-box;
  color: #F9F8F5;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
  min-height: 60px;
  min-width: 0;
  outline: none;
  padding: 16px 24px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 100%;
  will-change: transform;
}

.btn-primary-dark:hover {
  color: var(--bs-brown);
  background-color: #F9F8F5;
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
  border: inherit;
}

.btn-secondary-dark{
  appearance: none;
  background-color: #F9F8F5;
  border: none;
  border-radius: 15px;
  box-sizing: border-box;
  color: var(--bs-brown);
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
  min-height: 60px;
  min-width: 0;
  outline: none;
  padding: 16px 24px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 100%;
  will-change: transform;
}

.btn-secondary-dark:hover{
  color: #fff;
  background-color: #1A1A1A;
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
  border: inherit;
}

#dot-bg{
  background-image: url(img/bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: -80px;

}

.main-hero{
  height: 70vh;
  padding-top: 5vh;
  max-width: 1100px;
}

.main-hero h1 {
  padding-top: 20vh;
  pointer-events: none;
  margin-bottom: 32px;
  background: linear-gradient(135deg, rgba(52,46,42,1) 0%, rgba(99,90,83,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 7rem;
}

.main-hero h1 .marker{
  -webkit-text-fill-color: currentColor;     /* volta a cor normal do texto */
  -webkit-background-clip: initial;          /* desfaz o clip herdado */
  background-clip: initial;
}

.main-hero h1 .marker-blue{
  -webkit-text-fill-color: currentColor;     /* volta a cor normal do texto */
  -webkit-background-clip: initial;          /* desfaz o clip herdado */
  background-clip: initial;
}

.main-hero p{
  margin-top: 24px;
  font-size: 2rem;
  font-weight: 400;
  color: #2F2F31;
}

#services-hero h1{
  font-size: 6rem;
}

#services-hero h2{
  font-size: 4rem;
}

#services-hero h3{
  font-size: 8rem;
}

.about-text h2, h3{
  pointer-events: none;
  background: linear-gradient(135deg, rgba(52,46,42,1) 0%, rgba(99,90,83,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.about-text h4{
  font-size: 2rem;
}

.about-text img{
  width: 160px;
}

.aboutus{
  max-width: 600px;
}

.bgaboutus{
  background-image: linear-gradient(180deg, white, #F0F1F2);
  height: 50vh;
  padding-top: 15vh;
}

.aboutus h2{
  text-align: center;
}

.aboutus button{
  margin-top: 12px;
}

footer{
    margin-top: 100px;
    padding-top: 100px;
    text-align: center;
}

footer h4{
  font-weight: 500;
}

footer img{
  max-height: 48px;
}

#lets-talk{
  pointer-events: none;
  background: linear-gradient(135deg, rgba(52,46,42,1) 0%, rgba(99,90,83,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 8rem;
  margin-top: -40px;
  margin-bottom: 48px;
  font-family: "Instrument Serif", serif !important;
}

.button {
    display: inline-block;
    border: none;
    font-size: 1rem;
    padding: 20px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
    text-align: left;
    background-color: rgb(235, 235, 235);
    border-radius: 40px;
  }

  .button:hover{
    background-color: rgb(203, 203, 203);
  }
  
  .button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;    
  }
  
  .button span:after {
    content: '\203a';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
  }
  
  .button:hover span {
    padding-right: 25px;
  }
  
  .button:hover span:after {
    opacity: 1;
    right: 0;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }

  a:hover{
    text-decoration: none;
    color: inherit;
  }
  
  .cta {
    position: relative;
    margin: auto;
    padding: 19px 22px;
    transition: all 0.2s ease;
  }
  .cta:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-radius: 28px;
    background: rgba(227, 227, 227, 0.5);
    width: 56px;
    height: 56px;
    transition: all 0.3s ease;
  }
  .cta span {
    position: relative;
    font-size: 16px;
    line-height: 18px;
    font-weight: 600;
    vertical-align: middle;
  }
  .cta svg {
    position: relative;
    top: 0;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #111;
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.3s ease;
  }
  .cta:hover:before {
    width: 100%;
    background: linear-gradient(90deg, rgba(220,220,220,1) 0%, rgba(220,220,220,0) 100%);
  }
  .cta:hover svg {
    transform: translateX(0);
  }
  .cta:active {
    transform: scale(0.96);
  }

  .footer-menu {
    font-size: 2rem;
    color: #D3C2B7;
    margin: 24px auto;
    display: flex;
    justify-content: center;
  }
  
  .footer-menu nav {
    display: flex;
    gap: 24px;
  }
  
  .footer-menu a:hover {
    color: #C9A188;
  }


  .social{
    margin-top: 48px;
  }

.social a{
  color: #6E6E73 !important;
  padding: 24px;
  font-size: 1.4rem;
  padding-bottom: 48px;
}

.social a:hover{
    color: #1D1D1F !important;
    transition: 0.4s;
    cursor: pointer;
    
  }

.container-fluid{
  padding-left: 50px;
  padding-right: 50px;
}

.responsive{
  width: 100% !important;
}

.project-hero{
  width: 100%;
  border-radius: 16px;
  margin-top: 8px;
  margin-bottom: 98px;
}

.project-about{
  margin-top: 98px;
  margin-bottom: 196px;
}

.project-about p{
  font-weight: 400;
}

.project-img{
  width: 100%;
}

.project-colors{
  height: 600px;
  color: white;
  padding-top: 100px;
  font-weight: 600;
  font-size: 1.6rem;
}

#wireframes .grid-item img{
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.grid-item {
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.5s ease, opacity 0.5s ease;
  transition-delay: 0.2s;
  text-align: center;
}

.grid-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.grid-item:nth-child(1).visible { transition-delay: 0.2s; }
.grid-item:nth-child(2).visible { transition-delay: 0.4s; }
.grid-item:nth-child(3).visible { transition-delay: 0.6s; }
.grid-item:nth-child(4).visible { transition-delay: 0.8s; }
.grid-item:nth-child(5).visible { transition-delay: 1s; }

.curls-bg{
background-image: linear-gradient(45deg, #DD876A, #F8D5A1);
}

.startups-enterprise{
  padding-top: 98px;
  padding-bottom: 98px;
}

.startups-enterprise h2{
  pointer-events: none;
  background: linear-gradient(135deg, rgba(52,46,42,1) 0%, rgba(99,90,83,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-family: "Instrument Serif", serif !important;
  font-size: 6rem;
}

.startups-enterprise p{
  font-size: 1.6rem;
  margin-top: 24px;
  color: #635A53;
}

.project{
  padding-top: 48px;
  padding-bottom: 48px;
}

.project h2{
  pointer-events: none;
  background: linear-gradient(135deg, rgba(52,46,42,1) 0%, rgba(99,90,83,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 5rem;
}

.project p{
  font-size: 1.6rem;
  color: #342E2A;
  margin-bottom: 48px;
}

.join-us{
  margin-top: 98px;
  margin-bottom: 98px;
  background: linear-gradient(135deg, rgba(52,46,42,1) 0%, rgba(99,90,83,1) 100%);
  border-radius: 16px;
  padding-top: 48px;
  padding-bottom: 48px;
}

.join-us h1{
  color: white;
  margin-top: -32px;
  font-size: 5rem;
}

.join-us p{
  max-width: 600px;
  color: white;
}

#maestro{
  background-color: #F1EFE8;
}

#symbio{

}

#mensaly{

}

#brick-by-brick{
  background-color: #F1EFE8;
}



#uxpandy{
  background-color: #f5f5f5;
  padding-top: 48px;
  padding-bottom: 48px;
}

.card-services{
  height: 670px !important;
}

#services h4 small{
  color: grey;
}

#services img{
  border: 12px solid white;
  margin-left: -12px;
}

#design-thinking-bg{
  background-image: url(img/services/digital-products/design-thinking-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: -80px;
  height: 500px;

}

#branding h2 small{
  color: #ccc;
}

#curls-bg{
  background-image: url(img/arrows/yellow-circle.png) ;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Dropdown Button */
.dropbtn {
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0);
  border: none;
  font-size: 1rem;
  padding: 12px;
  color: #606060;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 8px;
}

.dropdown-content{
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 8px;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 1rem !important;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: rgba(5, 39, 39, 0.059)
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  color: black;
  background-color: rgba(0, 0, 0, 0.067);
  border: none;
  }

.dropdown-services {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content-services {
  display: none;
  position: fixed;
  left: 550px;
  width: 800px;
  background-color: #fff;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 32px;
}

/* Links inside the dropdown */
.dropdown-content-services a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 1rem !important;
}

/* Change color of dropdown links on hover */
.dropdown-content-services a:hover {
  background-color: rgba(5, 39, 39, 0.059);
}

/* Show the dropdown menu on hover */
.dropdown-services:hover .dropdown-content-services {
  display: block;
}

#hero{
  display: flex;
  justify-content: center;
}

.accordion-header button{
  font-weight: 600;
}

.accordion-body{
  color: #888888;
}

.accordion{
  --bs-accordion-active-color: #ff425e;
  --bs-accordion-active-bg: #f9f9f9;
  --bs-accordion-bg: #f9f9f9;
  --bs-accordion-btn-focus-box-shadow: none;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.vertical-align{
  margin-top: auto;
  margin-bottom: auto;
}

body{
  background-color: #F9F8F5;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

img {
  user-select: none;
  pointer-events: none;
}

.about-us-bg{
  background-image: url(img/map.png);
  background-size: cover;
  padding-top: 48px;
  margin-top: -72px;
  height: 795px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

#about-hero{
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 24px;
}

#ourteam{
  margin-top: -146px;
}

.about{
  padding-top: 96px;
  padding-bottom: 96px;
}

.about p{
  margin-top: 24px;
  font-weight: 400;
  font-size: 1.6rem;
}

#mensaly-bg{
  background-image: linear-gradient(45deg, #4CBFBC, #4C9CBF);
  padding-top: 96px;
  margin-top: -82px;
  height: 500px;
}

.mockup{
  padding-top: 96px;
  padding-bottom: 96px;
  background-color: #E6E6E6;
}

.pages{
  padding-top: 96px;
  padding-bottom: 96px;
}

.pages img{
  -webkit-box-shadow: 0px 0px 41px -10px rgba(0,0,0,0.38);
  -moz-box-shadow: 0px 0px 41px -10px rgba(0,0,0,0.38);
  box-shadow: 0px 0px 41px -10px rgba(0,0,0,0.38);
}

#services2{
  text-align: center;
  padding-top: 96px;
  padding-bottom: 96px;
}

#services2 .nav{
  background-color: #f5f5f5;
  margin-left: auto;
  margin-right: auto;
  padding-top: 4px;
  padding-bottom: 4px;
  border-radius: 8px;
  max-width: 500px;
}

#services2 .nav-pills .nav-link.active{
  background-color: white;
  color: #ff425e;
  -webkit-box-shadow: 0px 0px 41px -10px rgba(0,0,0,0.38);
  -moz-box-shadow: 0px 0px 41px -10px rgba(0,0,0,0.38);
  box-shadow: 0px 0px 41px -10px rgba(0,0,0,0.38);
}

#services2 a{
  font-weight: 600;
  color: #6C7176;
  font-family: 'avenir', sans-serif !important;
}

#services2 a:hover{
  color: #F17688;
  cursor: pointer;
}

.four-columns {
  display: flex;
padding-top: 24px;
}

.column {
  flex: 1;
  padding: 10px;
  box-sizing: border-box;
}

#apps-design, #graphic-design, #branding, #websites{
  border-radius: 16px;
  padding-top: 24px;
  padding-left: 24px;
  padding-right: 24px;
}

.horizontal-scroll {
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding-left: 200px;
  overflow-x: hidden; /* Hide the scrollbar */
  padding: 10px; /* Add padding to prevent content from touching the edges */
  padding-bottom: 96px;
}


.container-values {
  display: flex;
  align-items: center;
}

#values{
  display: flex;
}

#control-buttons{
  margin-left: auto;
}

#blank{
  width: 250px;
  background-color: transparent !important;
}

#camaraderie{
  background-image: url(img/about/camaraderie.png);
}

#figure{
  background-image: url(img/about/figure-it-out.png);
}

#enjoy{
  background-image: url(img/about/enjoy-the-ride.png);
}

#humble{
  background-image: url(img/about/be-humble.png);
}

#timing{
  background-image: url(img/about/timing.png);
}

#team-social{
  font-size: 2rem;
  margin-top: -16px;
}

#team-social a{
  gap: 12px;
}

#team-social a:hover{
  color: #ff425e;
  cursor: pointer;
}

:root, [data-bs-theme=light] {
  --bs-orange: #ff7843;

}

:root, [data-bs-theme=light] {
  --bs-brown: #342E2A;
}

:root, [data-bs-theme=light] {
  --bs-brown-light: #7B6F66;
}

:root, [data-bs-theme=light] {
  --bs-pink: #ff425e;
}


#submenu {
  max-width: 800px;
  border-radius: 16px;
  margin-top: 24px;
  margin-bottom: 98px;
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 24px;
  z-index: 1000;
  transition: all 0.2s ease;
}

#submenu li{
  text-decoration: none;
  list-style: none;
  margin-right: 24px;
}

#submenu a{
  font-weight: 600;
  font-size: 1rem;
  color: #212529;
}

#submenu .nav-list {
  list-style-type: none;
  display: flex;
  justify-content: space-around;
  padding: 0;
}

#submenu .nav-link {
  opacity: 0.4; /* Default opacity */
  transition: opacity 0.3s ease;
}

#submenu .nav-link:hover {
  opacity: 1 !important; /* Full opacity on hover */
}

#submenu .nav-list li {
  text-align: center; /* Centers the text and image */
}

#submenu .nav-list li a img {
  display: block; /* Ensures images are block-level elements */
  margin: 0 auto; /* Centers images horizontally */
  height: 48px;
  width: 48px;
}

#submenu .nav-list li a {
  display: block; /* Ensures the link takes the whole width */
  margin-top: 8px; /* Adds space between image and text */
  text-decoration: none; /* Removes underline from links */
  color: inherit; /* Inherits color from parent */
}

#submenu.is-stuck {
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid #DDDDDD;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  backdrop-filter: blur(12px) saturate(1.2);
}

#submenu.is-stuck .nav-list li a img {
  margin-top: 16px;
  height: 32px;
  width: 32px;
}

#submenu .nav-link {
  opacity: 1;
  transition: opacity 0.2s ease;
}

#submenu.is-stuck .nav-link {
  opacity: 0.5;
}

#submenu.is-stuck .nav-link.active {
  opacity: 1;
}

#submenu-sentinel {
  position: relative;
  height: 1px;
  width: 100%;
}

.slider-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  height: 80vh;
}

.slider {
  display: flex;
  width: 80%;
  border: none;
  margin: 20px 0;
}

.carousel-container {
  position: relative;
  width: 100%; /* Adjust based on your layout */
  max-width: 650px; /* Set a maximum width if needed */
  overflow: hidden;
  height: 488px;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.carousel img {
  width: 100%; /* Each image takes up 100% of the carousel container width */
  flex-shrink: 0; /* Prevent images from shrinking */
  border-radius: 25px;
}

.carousel-item {
  min-width: 100%; /* Ensure each item takes up full width */
  box-sizing: border-box;
}

.carousel-item img {
  width: 100%;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 12px;
  cursor: pointer;
  z-index: 1;
}

.carousel-control:hover {
  background: rgba(0, 0, 0, 0.8);
}

.prev {
  left: 0;
  border-radius: 0px 12px 12px 0px;
}

.next {
  right: 0;
  border-radius: 12px 0px 0px 12px;
}

.content {
  flex: 1;
  padding: 10px;
}

.topic h3 {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.topic h3:hover {
  color: #EA8745;
}

.topic p {
  display: none;
  margin: 0;
}

.topic.active p {
  display: block;
}

.content h3{
  font-weight: 600;
  font-size: 1.6rem;
  color: #D3C2B7;
  margin-top: 16px;
}

.content p{
  font-size: 1.2rem;
  font-weight: 400;
}

.topic.active h3 {
  color: var(--bs-orange) !important;
}

.topic.active .chevron {
  color: var(--bs-orange) !important;
}

.chevron {
  transition: transform 0.3s;
}

.topic.active .chevron {
  transform: rotate(0deg); /* Rotate to point down */
}

/* Optional: Style for inactive topic */
.topic .chevron {
  transform: rotate(-90deg); /* Default pointing right */
}

.btn-underline{
  font-weight: 600;
  border-bottom: 2px solid #D3C2B7;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}

.btn-underline:hover{
  border-bottom: 2px solid var(--bs-orange);
}

.btn-underline i{
  color: #D3C2B7;
}

.btn-underline:hover .fa-arrow-right {
  color: var(--bs-orange) 
}

#principles p{
  font-weight: 400;
}

#principles img{
  height: 56px;
  width: 56px;
  margin-bottom: 24px;
}

#principles .card{
  padding-top: 24px;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 16px;
  border: 1px solid #EFE7E1;
  flex: 1;
}

#principles-cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  
}

#scrollContainer{
  font-family: 'avenir', sans-serif !important;
}

#scrollContainer .card{
  border: none;
  padding: 24px;
  height: 600px;
  width: 400px;
  flex: 0 0 auto;
  margin-right: 10px;
  border-radius: 8px;
}

#scrollContainer .card2{
  border: none;
  padding: 24px;
  width: 400px;
  flex: 0 0 auto;
  gap: 24px;
}

#scrollContainer .card h3{
  font-size: 2rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
}

#scrollContainer .card h3 small{
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 12px;
}

/* Container styles */
#scrollContainer .container {
  max-width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0 20px;
}

/* Scroll container styles */
#scrollContainer .horizontal-scroll {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Hide scrollbar on Firefox */
  -ms-overflow-style: none; /* Hide scrollbar on IE and Edge */
}

#scrollContainer .horizontal-scroll::-webkit-scrollbar {
  display: none; /* Hide scrollbar on Chrome, Safari, and Opera */
}

/* Button styles */
#scrollContainer #control-buttons {
  text-align: center;
  margin-top: 16px;
}

#scrollContainer .btn-secondary {
  background-color: #6c757d;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

#scrollContainer .btn-secondary:hover {
  background-color: #5a6268;
}

#scrollContainer #prevBtn {
  margin-right: 10px;
}

#contacts label{
  font-weight: 600;
}

#contacts #whatsapp a{
  color: #25D366;
}

#contacts #whatsapp a:hover{
  color: #0E9641;
}

#contacts #email a{
  color: #7B6F66;
}

#contacts #email a:hover{
  color: #ff7843;
}

input{
  width: 100%;
  border-radius: 8px;
  height: 48px;
  border: 1px solid #D3C2B7;
  padding-left: 8px;
}

textarea{
  width: 100%;
  border-radius: 8px;
  height: 200px;
  border: 1px solid #D3C2B7;
  padding-left: 8px;
  padding-top: 8px;
  padding-right: 8px;
}

.success-form{
  background-color: #F1F0EE;
  border-radius: 12px;
  margin-top: auto;
  margin-bottom: auto;
  padding-top: 48px;
  padding-bottom: 48px;
}

.service-section{
  border-radius: 12px;
  margin-top: 24px;
  padding: 48px;
}

.stand-alone{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.stand-alone .column{
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 24px;
  flex: 1 1 calc(25% - 10px); /* 4 columns with spacing */
  margin: 5px; /* Spacing between columns */
  box-sizing: border-box; /* Include padding and margin in total width */
}

.stand-alone .column:hover{
  scale: 1.05;
  transition: 1s;
}

.stand-alone .column h4{
  margin-top: 16px;
  color: #342E2A;
}

.stand-alone .column p{
  font-weight: 400;
  font-size: 1rem;
  color: #7B6F66;
}

.gradient{
  background: rgb(255,120,67);
  background: linear-gradient(51deg, rgba(255,120,67,1) 0%, rgba(255,171,67,1) 52%, rgba(255,120,67,1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
-webkit-text-fill-color: transparent;
}

/*Design for humans animation*/

.custom-text-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  margin-top: 98px;
  padding-bottom: 48px;
  font-weight: 800;
}

.text-wrapper {
  display: flex;
  width: 200%;
  animation: slide-text 60s linear infinite;
}

.custom-text-container svg {
  width: 100%;
  height: 200px;
}

path {
  fill: none;
  stroke: none;
}

.animated-text {
  font-size: 64px;
  fill: var(--bs-pink)
}

@keyframes slide-text {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*shiny-text*/

.shiny-text {
  font-size: 48px;
  position: relative;
  display: inline-block;
  color: var(--bs-orange);
  overflow: hidden;
}

.shiny-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%; /* Start from the left outside the text */
  width: 200%; /* Ensure it extends beyond the text */
  height: 100%;
  background: linear-gradient(90deg, rgba(249,248,245,0) 0%, rgba(249,248,245,0.5186449579831933) 50%, rgba(249,248,245,0) 100%);
  animation: shimmer 3s linear infinite; /* Use linear timing function for continuous effect */
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%); /* Start off-screen to the left */
  }
  100% {
    transform: translateX(100%); /* Move to the right off-screen */
  }
}

.service-hero{
  margin-top: 98px;
  margin-bottom: 98px;
  text-align: center;
  color: var(--bs-brown);
}

.service-hero h1{
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.service-hero p{
  font-size: 2rem;
  font-weight: 400;
  color: var(--bs-brown-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.card-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  overflow: hidden;
  padding-right: 0px;
}

.card-section img{
  max-width: 100%;
}

.card-wrapper {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding: 20px 0;
  width: 100%;
  scroll-behavior: smooth;
  transition: scroll 0.3s ease;
}

.card-2 {
  width: 440px;
  height: 600px;
  background-color: white;
  border-radius: 16px;
  padding: 20px;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex-shrink: 0;
}

.card-2 h3{
  color: var(--bs-brown);
}

.card-2 p{
  font-weight: 400;
  color: var(--bs-brown-light);
}

.card-2 img.card-image {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  object-fit: cover;
  border-radius: 16px;
}

.card-content h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.card-content p {
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 1rem;
}

.card-content .action-button {
  background-color: transparent;
  color: var(--bs-blue);
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  padding-left: 0;
}

.card-content .action-button:hover {
  opacity: 80%;
}

/* Swipe behavior */
.card-wrapper {
  scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.card-wrapper::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome, Safari, Opera */
}

/* Show the grabbing cursor when dragging */
.card-wrapper.active {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}

/* Default cursor over the cards */
.card-wrapper {
  cursor: grab;
  cursor: -webkit-grab;
}

.wizard-section {
  text-align: center;
}

.wizard-steps {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.step {
  margin: 0 10px;
  text-align: center;
  opacity: 0.2;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.step.active {
  opacity: 1; /* Make active step fully visible */
}

.step:hover {
  opacity: 1;
}

.step-number {
  font-size: 20px;
  font-weight: 800;
  border: 2px solid var(--bs-brown);
  border-radius: 50%;
  height: 32px;
  width: 32px;
  margin-left: auto;
  margin-right: auto;
}

.step-title {
  padding: 10px 20px;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--bs-brown);
}

.wizard-content .content-wizard {
  display: none;
  margin-top: 20px;
}

.wizard-content .content-wizard.active {
  display: block;
}

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

.content-wizard p {
  max-width: 600px;
  color: var(--bs-brown-light);
  font-weight: 400;
  margin-left: auto;
  margin-right: auto;
}

.step-title.active {
  background-color: #4C00FF;
  color: white;
}

.timeline{
  margin-top: 98px;
  margin-bottom: 98px;
  padding-top: 48px;
  padding-bottom: 48px;
  background-color: white;
  border-radius: 16px;
}

.topics-section {
  display: flex;
}

.topics-list {
  width: 40%;
  padding: 20px;
}

.topic {
  padding: 10px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.topic.active {
  opacity: 1;
}

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

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

.title-group h4{
  color: var(--bs-brown);
}

.title-group h4 small{
  color: var(--bs-brown-light);
  font-weight: 600;
}

.chevron {
  font-size: 16px;
  transform: rotate(0deg);
  transition: transform 0.3s;
}

.topic.active .chevron {
  transform: rotate(5deg);
}

.topic-content {
  display: none;
  margin-top: 10px;
}

.topic-content p{
  font-weight: 400;
  color: var(--bs-brown-light);
}

.topic.active .topic-content {
  display: block;
}

.image-display {
  width: 60%;
  position: relative;
}

.image-display img {
  display: none;
  width: 100%;
  height: auto;
}

.image-display img.active-image {
  display: block;
}

hr {
  border: 0;
  border-top: 1px solid #ccc;
  margin: 10px 0;
}

.dark-cta{
  background-color: var(--bs-brown);
  padding-top: 98px;
  padding-bottom: 98px;
  border-radius: 16px;
  margin-bottom: 98px;
}

.dark-cta h1{
  color: #F9F8F5;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.dark-cta p{
  color: var(--bs-brown-light);
  font-size: 2rem;
  font-weight: 400;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/*faq*/

.faq-section {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  opacity: 0.5;
  transition: opacity 0.3s ease-in-out;
}

.faq-item.active-faq {
  opacity: 1;
}

.faq-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-radius: 5px;
}

.chevron {
  display: inline-block;
  transform: rotate(0deg);
  transition: transform 0.3s ease-in-out;
}

.faq-item.active-faq .chevron {
  transform: rotate(95deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  padding: 0 10px;
}

.faq-content p{
  font-weight: 400;
  color: var(--bs-brown-light);
}

.faq-item.active-faq .faq-content {
  max-height: 300px; /* Adjust depending on the content height */
  padding-top: 10px;
}

.faq-contact-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px; /* Adjust the spacing between columns */
  margin-top: 98px;
  margin-bottom: 98px;
}

.faq-section, .contact-section {
  flex: 1;
  min-width: 300px; /* Ensure it works on smaller screens */
}

.faq-section {
  max-width: 50%; /* Limit the FAQ section width to half of the available space */
}

.contact-section {
  max-width: 50%; /* Limit the Contact section width to half of the available space */
}

/* highlight com vibe artesanal (ideal para UMA linha) */
.marker{
  --c: 255,234,0;
  --alpha: .62;
  --h: .58em;

  padding: 0 .18em;
  border-radius: .28em;
  display: inline;
  box-decoration-break: clone; -webkit-box-decoration-break: clone;

  /* base levemente irregular */
  background:
    /* granulado suave */
    radial-gradient(8px 8px at 10% 50%, rgba(0,0,0,.03), rgba(0,0,0,0)) 0 90%/16px var(--h) repeat-x,
    radial-gradient(10px 10px at 60% 55%, rgba(0,0,0,.02), rgba(0,0,0,0)) 0 88%/22px var(--h) repeat-x,
    linear-gradient(rgba(var(--c), var(--alpha)), rgba(var(--c), var(--alpha)));
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: 100% var(--h), 100% var(--h), 100% var(--h);
  background-position: 0 84%, 0 84%, 0 84%;
}

.marker-blue {
  --c: 67, 160, 255; /* azul vibrante (#43A0FF) */
  --alpha: 0.55;
  --h: 0.58em;

  padding: 0 .18em;
  border-radius: .28em;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;

  background:
    /* granulado sutil */
    radial-gradient(8px 8px at 10% 50%, rgba(255,255,255,.15), rgba(0,0,0,0)) 0 90%/16px var(--h) repeat-x,
    radial-gradient(10px 10px at 60% 55%, rgba(0,0,0,.04), rgba(0,0,0,0)) 0 88%/22px var(--h) repeat-x,
    linear-gradient(rgba(var(--c), var(--alpha)), rgba(var(--c), var(--alpha)));

  background-repeat: no-repeat;
  background-size: 100% var(--h);
  background-position: 0 84%;
}



.marker::before {
  content: "";
  position: absolute;
  left: -0.15em;
  right: -0.15em;
  bottom: 0.15em; /* move para baixo do texto */
  height: 0.45em; /* altura de uma linha de marcador */
  background: rgba(var(--marker-color), var(--marker-opacity));
  border-radius: 0.15em;
  transform: rotate(-1deg);
  z-index: -1;
}



.clients {
  overflow: hidden;
  width: 100%;
  padding: 40px 0;
  position: relative;
}

.marquee {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.marquee__content {
  display: flex;
  align-items: center;
  gap: 80px; /* espaçamento entre logos */
  list-style: none;
  padding: 0;
  margin: 0;
  margin-right: 80px;
  
}

.marquee__content img {
  height: 120px;
  filter: grayscale(100%) brightness(0.5);
  transition: filter 0.3s ease;
}


/* animação */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* evita delay no carregamento */
.marquee,
.marquee__content {
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* CARD base */
.cards {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-auto-rows: auto;
  grid-auto-flow: dense;
  margin-bottom: 24px; /* espaçamento entre seções */
}

.cards p{
  font-weight: 400;
  font-size: 1rem;
  color: #393834;
}

.cards .dark p{
  color: #9b9b9b !important;
}

.cards h4{
  font-weight: 600;
}

.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.card--wide {
  grid-column: span 2;
}

.blue-card{
  background-image: linear-gradient(180deg, #B8E4FA, #f6fbff);
}

@media (max-width: 900px) {
  .card--wide {
    grid-column: span 1;
  }
}

.pan-viewport{
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* elemento que carrega o background */
.pan-bg{
  width: 100%;
  height: 100%;
  background-image: var(--img);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;            /* não força redimensionamento */
  animation: panY 48s linear infinite alternate;
}

/* sobe (top) -> desce (bottom) -> sobe... */
@keyframes panY{
  0%   { background-position: center top; }
  100% { background-position: center bottom; }
}

/* Acessibilidade: respeita quem prefere menos animação */
@media (prefers-reduced-motion: reduce){
  .pan-bg{ animation: none; }
}

.swap-img {
  display: none;
  width: 100%;
  transition: opacity 0.5s ease;
}

.swap-img.active {
  display: block;
}

/*infographics*/

.image-slider {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
  margin: 0;
}

.image-slider + .image-slider {
	margin-top: -16px; /* define o espaçamento exato entre eles */
}

/* faixa com as imagens */
.image-track {
	display: flex;
	width: max-content;
	animation: slide-left 40s linear infinite;
}

.image-track img {
	height: 200px;
	width: auto;
	object-fit: contain;
  margin-right: 16px;
}

/* animação: movimento infinito */
@keyframes slide-left {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); } /* metade pois duplicamos o conteúdo */
}

.image-slider.reverse .image-track {
	animation: slide-right 40s linear infinite;
}

@keyframes slide-right {
	from { transform: translateX(-50%); }
	to { transform: translateX(0); }
}

#packaging{
  background-image: url(img/services/packaging-1.png);
  background-size: cover;   
}

.overlay{
  padding: 16px;
  background-color: #FAF4EB;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}






/* Respeitar usuários com redução de movimento */
@media (prefers-reduced-motion: reduce){
  .marquee{ animation: none; }
}



@media (min-width: 769px) {
  .mobile-menu {
    display: none; 
  }

  .mobie-only{
    display: none;
  }
}



@media (max-width: 768px) {
  .desktop-menu{
    display: none;
  }

  .faq-section, .contact-section {
    max-width: 100%; /* Stacks the columns vertically on smaller screens */
  }

  .mobile-menu {
    display: block; 
  }

  #language-selection{
    display: none;
  }

  h1{
    font-size: 3rem;
  }

  p{
    font-size: 1rem;
  }
 
  #services2 p{
    font-size: 1rem;
  }

  .menu a{
    font-size: 1.4rem !important;
  }

  .footer-menu a{
    font-size: 1.4rem !important;
  }

  #contacts{
    text-align: center !important;
  }

  #contacts form{
    text-align: left !important;
    margin-top: 98px;
  }

  .desktop-only{
    display: none;
  }

  .content {
    flex: 1;
    padding: 10px;
    padding-left: 0px !important;
  }

  #principles-cards {
    display: block;
  }

  #principles .card{
    margin-top: 24px !important;
  }

  .stand-alone .column {
    flex: 1 1 calc(50% - 10px); /* 2 columns with spacing */
  }


}











