
/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&family=Saira:wght@100..900&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(229, 54%, 43%);
  --first-color-alt: hsl(216, 100%, 68%);
  --title-color: hsl(166, 95%, 15%);
  --text-color: hsl(166, 12%, 40%);
  --white-color: hsl(0, 0%, 0%);
  --dark-color: hsl(166, 95%, 12%);
  --body-color: hsl(0, 0%, 100%);
  --body-white-color: hsl(0, 0%, 100%);
  :root {
  --body-gradient: linear-gradient(135deg, yellow, blue);
}

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", serif;
  --second-font: "Saira", serif;
  --biggest-font-size: 4.5rem;
  --big-font-size: 2.5rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --biggest-font-size: 9.5rem;
    --big-font-size: 4rem;
    --h1-font-size: 2rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
  }
}

/*=============== BASE ===============*/

input,
button,
body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-color: var(--body-color);
  color: var(--text-color);
}

input,
button {
  outline: none;
  border: none;
}

h1, h2, h3, h4 {
  font-family: var(--second-font);
  font-weight: var(--font-medium);
  line-height: 110%;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.containeer {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.seection {
  padding-block: 5rem 4rem;
}

.section__title {
  text-align: center;
  font-size: var(--big-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: 2.5rem;
}

.main {
  overflow: hidden;
}


/*=============== HOME ===============*/
.home__container{
    position: relative;
    padding-top: 3rem;
    row-gap: 0;
}

.home__title{
    color: var(--white-color);
    font-size: var(--biggest-font-size);
    font-weight: var(--font-semi-bold);
    text-align: center;
}

.home__images{
    position: relative;
    display: grid;
    justify-items: center;
    justify-self: center;
}

.home__shape{
    width: 280px;
    height: 280px;
    /* background-color: #ffee00; */
    border-radius: 50%;
    clip-path: inset(50% 0 0 0);
}

.home__images img{
    position: absolute;
}

.logo__home{
    width: 160px;
    top: -3.5rem;
}

.home__j50-sticker-1,
.home__j50-sticker{
    width: 40px;
}

.home__j50-sticker-1{
    left: 1.5rem;
    top: 1.5rem;
}

.home__j50-sticker{
    right: 3.5rem;
    bottom: 6.5rem;
    rotate: -90deg;
    filter: blur(2px);
}

.caixa__sticker-1{
    width: 50px;
    left: 1.5rem;
    bottom: 3rem;
}

.caixa__sticker-2{
    width: 40px;
    top: 4rem;
    right: 1.25rem;
    rotate: 60deg;
}

.home__sticker{
    position: absolute;
    width: 50px;
    right: .5rem;
    top: 29rem;
    rotate: 15deg;
    animation: spin 30s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.home__data{
    margin-top: 2.5rem;
    text-align: center;
}

.home__description{
    color: var(--white-color);
    margin-bottom: 1.5rem;
}

.home__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 880px;
    object-fit: cover;
    object-position: center;
}

.home__shadow {
    position: absolute;
    top: 50rem;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, hsla(0, 100%, 50%, 0) 58%, hsl(0, 0%, 100%) 78%);
}
/*=============== BUTTON ===============*/
.button{
    display: inline-flex;
    justify-content: center;
    background-color: #000000;
    color: #fff;
    padding: 1rem 2rem;
    font-weight: var(--font-semi-bold);
    transition: background .4s, box-shadow .4s;
    border-radius: 15px;
}

.button:hover{
    background-color: #fff;
    box-shadow: 0 8px 24px hsla(166, 85%, 8%, .2);
}

.button-dark{
  background-origin: var(--dark-color);
}

.button-dark:hover{
  background-color: var(--first-color);
}

/*=============== POPULAR ===============*/
.popular{
  background-color: var(--body-white-color);
}

.popular .section__title{
  color: var(--title-color);
}

.popular__swiper{
  padding-top: 1.5rem;
}

.popular__card{
  width: 270px;
  display: grid;
  row-gap: 1.5rem;
}

.popular__images{
  position: relative;
  display: grid;
  justify-items: center;
  justify-self: center;
}

.popular__shape{
  width: 195px;
  height: 195px; 
  background-color: var(--first-color);
  border-radius: 50%;
  clip-path: inset(50% 0 0 0);
}

.popular__images img{
  position: absolute;
}

.popular__envolvedoras{
  width: 130px;
  top: -1.5rem;
}

.popular__sticker-1{
  width: 30px;
  top: 3rem;
  left: .5rem;
  transition: transform .5s .1s;
}

.popular__sticker-2{
  width: 20px;
  right: 2rem;
  bottom: 2rem;
  rotate: 75deg;
  filter: blur(1px);
  transition: transform .5s .1s;
}

.popular__data{
  text-align: center;
}

.popular__name{
  font-size: var(--h1-font-size);
  color: var(--title-color);
  margin-bottom: .5rem;
}

.popular__description{
  margin-bottom: 1.5rem;
}

.popular__card:hover .popular__sticker-1 {
  transform: translate(-.5rem, .25rem); 
}

.popular__card:hover .popular__sticker-2 {
  transform: translate(.5rem, .25rem); 
}
/* Swiper class */
.swiper{
  overflow: visible;
  margin-inline: initial;
}

 /* BOTÃO DO WHATSAPP */
.whatsapp-fancy-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,211,102,0.1) 20%, transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: pulse-ring 2s infinite;
}


.inner-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border: 2px solid white;
  box-shadow:
    0 0 0 3px #059669,
    0 8px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  font-size: 24px;

  transition: transform 0.3s ease;
}

.inner-circle:hover {
  transform: scale(1.1); 
}

/* Bolinha verde com transparência */
.notification-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(0, 255, 150, 0.6);
  border: 2px solid white;
}

/* Pop-up estilo balão com seta */
.whatsapp-popup {
  position: fixed;
  bottom: 100px;
  right: 20px;
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid #ddd;
  max-width: 260px;
  display: none;
  z-index: 999;
  font-family: 'Segoe UI', sans-serif;
}

.popup-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.popup-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}

.popup-text {
  color: #333;
  font-size: 14px;
  line-height: 1.4;
}

.popup-close {
  position: absolute;
  top: 6px;
  right: 6px;
  border: none;
  background-color: #444;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* Seta do balão */
.popup-arrow {
  position: absolute;
  bottom: -10px;
  right: 22px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid white;
  filter: drop-shadow(0 -1px 1px rgba(0,0,0,0.1));
}

/* Animação do círculo */
@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/*=============== ABOUT ===============*/
.about__container{
  row-gap: 3rem;
}

.about__data{
  text-align: center;
}

.about .section__title,
.about__description{
  color: var(--white-color);
  margin-bottom: 1.5rem;
}

.about__images{
  position: relative;
  display: grid;
  place-items: center;
  justify-self: center;
}

.about__shape{
  width: 300px;
  height: 300px;
  background-color: var(--first-color);
  box-shadow: 0 0 25px blue;
  border-radius: 50%;
}

.about__images img{
  position: absolute;
}

.about__j50-v2{
  width: 280px;
  filter: drop-shadow(0 8px 16px hsla(166, 85%, 8%, .5));
}

.about__sticker-1,
.about__sticker-2{
  width: 50px;
}

.about__sticker-1{
  top: .5rem;
  left: 3.5rem;
  rotate: -105deg;
}

.about__sticker-2{
  top: 7.75rem;
  right: 2.5rem;
  rotate: -15deg;
}
/*=============== PRODUCTS ===============*/

.products .section__title{
  color: #000;
}

.products__container{
  grid-template-columns: repeat(2, 1fr);
}

.products__card{
  position: relative;
  /* background-color: var(--dark-color); */
  padding: 1rem .5rem 1.25rem;
}

.products__images{
  position: relative;
  display: grid;
  justify-items: center;
  justify-self: center;
}

.products__shape{
  width: 128px;
  height: 120px;
  border-radius: 50%;
  clip-path: inset(50% 0 0 0);
}

.products__images img{
  position: absolute;
}

.products__imagem{
  width: 80px;
  top: 0;
  transition: transform .4s;
}

.products__sticker-1{
  width: 30px;
  left: .5rem;
  bottom: 0;
  transition: transform .5s .1s;
}

.products__sticker-2{
  width: 20px;
  top: 3.25rem;
  right: .75rem;
  rotate: 60deg;
  transition: transform .5s .1s;
}

.products__data{
  margin-top: 1.25rem;
}

.products__name{
  color: var(--white-color);
  font-size: var(--h3-font-size);
  margin-bottom: .75rem;
}

.products__price{
  color: var(--first-color);
  font-size: var(--h3-font-size);
  font-weight: var(--font-medium);
}

.products__button{
  position: absolute;
  right: .5rem;
  bottom: 1.25rem;
  width: 32px;
  height: 32px;
  font-size: 1.5rem;
  border-radius: 50%;
  box-shadow: 0 4px 8px hsla(166, 85%, 80%, .4);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.products__card:hover .products__imagem{
  transform: translateY(-.25rem);
}

.products__card:hover .products__sticker-1{
  transform: translate(-.25rem, .25rem);
}

.products__card:hover .products__sticker-2{
  transform: translate(-.5rem, -.5rem);
}
/*=============== CONTACT ===============*/
.contact .section__title{
  color: var(--white-color);
}

.contact__container,
.contact__info{
  row-gap: 2rem;
}

.contact__info{
  color: var(--white-color);
  text-align: center;
}

.contact__title{
  font-size: var(--h1-font-size);
  margin-bottom: .5rem;
}

.contact__social{
  display: flex;
  justify-content: center;
  column-gap: 1rem;
}

.contact__social-link{
  font-size: 2rem;
  color: var(--first-color);
  transition: transform .4;
}

.contact__social-link:hover{
  transform: translateY(-.25rem);
}

.contact__address{
  font-style: normal;
}

.contact__map{
  color: var(--first-color);
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  margin-top: .5rem;
  font-size: 1rem;
}

.contact__map span{
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
}

.contact__images{
  position: relative;
  display: grid;
  justify-items: center;
  margin-top: 3rem;
}

.contact__shape{
  width: 300px;
  height: 300px;
  border-radius: 50%;
}

.contact__img{
  width: 230px;
  position: absolute;
  top: -2.5rem;
  mask-image: linear-gradient(to bottom, 
              var(--first-color) 80%),
              transparent 100%;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 330px){
  .containeer{
    margin-inline: 1rem;
  }

  .section__title{
    font-size: 2rem;
  }

  .home__title{
    font-size: 3.5rem;
  }
  .home__shape{
    width: 250px;
    height: 250px;
  }
  .logo__home{
    width: 145px;
  }
  .home__sticker{
    top: 25rem;
  }

  .about__shape{
    width: 250px;
    height: 250px;
  }
  .about__j50-v2{
    width: 240px;
  }

  .products__container{
    grid-template-columns: 160px;
    justify-content: center;
  }

  .contact__shape{
    width: 250px;
    height: 250px;
  }
  .contact__img{
    width: 190px;
  }
}

/* For medium devices */
@media screen and (min-width: 576px){
  .home__container,
  .about__container{
    grid-template-columns: 400px;
    justify-content: center;
  }

  .products__container{
    grid-template-columns: repeat(2, 160px);
    justify-content: center;
  }
}

@media screen and (min-width: 768px){
  .popular__swiper{
    width: 850px;
    overflow-x: clip;
    justify-self: center;
  }

  .products__container{
    grid-template-columns: repeat(3, 160px);
  }

  .contact__container{
    justify-content: center;
  }
  .contact__info{
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    column-gap: 6rem;
  }

  
}

/* For large devices */
@media screen and (min-width: 1150px){
  .containeer{
    margin-inline: auto;
  }

  .seection{
    padding-block: 7rem 5rem;
  }
  .section__title{
    margin-bottom: 4rem;
  }

  .home__container{
    grid-template-columns: 970px;
    max-width: 970px;
    padding-top: 2.5rem;
  }
  .home__images{
    transform: translate(1rem, -2rem);
  }
  .home__shape{
    width: 490px;
    height: 490px;
  }
  .logo__home{
    width: 280px;
    top: -6rem;
  }
  .home__j50-sticker-1,
  .home__j50-sticker{
    width: 70px;
  }
  .home__j50-sticker-1{
    left: 3rem;
    top: 3.5rem;
  }
  .home__j50-sticker{
    bottom: 10.75rem;
    right: 6.5rem;
  }
  .caixa__sticker-1{
    width: 90px;
    left: 2.5rem;
    bottom: 5rem;
  }
  .caixa__sticker-2{
    width: 70px;
    top: 6.5rem;
    right: 2rem;
  }
  .home__data{
    position: absolute;
    top: 20rem;
    left: -30px;
    width: 230px;
    text-align: initial;
    margin-top: 0;
  }
  .home__description{
    margin-bottom: 2rem;
  }
  .home__sticker{
    width: 150px;
    top: 23rem;
    right: 0;
  }

  .popular__container{
    padding-bottom: 2rem;
  }
  .popular__swiper{
    width: 1000px;
  }
  .popuar__card{
    width: 280px;
  }
  .popular__shape{
    width: 280px;
    height: 280px;
  }
  .popular__envolvedoras{
    width: 185px;
    top: -2rem;
  }
  .popular__sticker-1{
    width: 40px;
    top: 4rem;
    left: .75rem;
  }
  .popular__sticker-2{
    width: 30px;
    right: 2.5rem;
    bottom: 2.5rem;
  }

  .about__container{
    grid-template-columns: 430px 500px;
    align-items: center;
    column-gap: 6rem;
    padding-block: 2rem;
  }
  .about__data,
  .about .section__title{
    text-align: initial;
  }
  .about__description{
    margin-bottom: 4rem;
  }
  .about__shape{
    width: 500px;
    height: 500px;
  }
  .about__j50-v2{
    width: 480px;
  }
  
  .about__sticker-1,
  .about__sticker-2{
    width: 85px;
  }

  .about__sticker-1{
    top: .75rem;
    left: 6rem;
  }
  .about__sticker-2{
    top: 13rem;
    right: 3.5rem;
  }

  .products__container{
    grid-template-columns: repeat(3, 250px);
    gap: 5rem;
    padding-bottom: 2rem;
  }
  .products__card{
    padding: 1.5rem 1rem 2rem;
  }
  .products__shape{
    width: 200px;
    height: 200px;
  }
  .products__imagem{
    width: 130px;
  }
  .poducts__ice-1{
    width: 50px;
    left: .75rem;
  }
  .products__sticker-2{
    width: 30px;
    top: 5.5rem;
    right: 1.5rem;
  }
  .products__data{
    margin-top: 1.5rem;
  }
  .products__name,
  .products__price{
    font-size: var(--h2-font-size);
  }
  .products__button{
    right: 1rem;
    bottom: 2rem;
    width: 36px;
    height: 36px;
  }

  .contact .section__title{
    font-size: var(--biggest-font-size);
  }
  .contact__container{
    grid-template-columns: repeat(3, max-content);
    align-items: flex-start;
    column-gap: 3rem;
  }
  .contact__info{
    grid-template-columns: max-content;
    row-gap: 6rem;
    margin-top: 7rem;
  }
  .contact__info:nth-child(2){
    order: 2;
  }
  .contact__title{
    font-size: var(--h2-font-size);
    margin-bottom: 1rem;
  }
  .contact__social{
    column-gap: 1.5rem;
  }
  .contact__images{
    margin-top: 0;
  }
  .contact__shape{
    width: 500px;
    height: 500px;
  }
  .contact__img{
    width: 380px;
    top: -3.5rem;
  }
  
}

/* For 2K resolutions (2048 x 1152, 2048 x 1536) */
@media screen and (min-width: 2048px){
  body{
    zoom: 1.3;
  }
}





