@font-face {
  font-family: Inter;
  src: url(../fonts/inter/Inter-VariableFont_opsz\,wght.ttf);
}

@font-face {
  font-family: Roboto;
  src: url(../fonts/roboto/Roboto-Regular.ttf);
}

@font-face {
  font-family: Oswald;
  src: url(../fonts/oswald/Oswald-VariableFont_wght.ttf);
}

@font-face {
  font-family: Edu;
  src: url(../fonts/edu-au-vic-wa-nt/EduAUVICWANTHand-VariableFont_wght.ttf);
}

@font-face {
  font-family: Gentium Plus;
  src: url(../fonts/Gentium_Plus/GentiumPlus-Bold.ttf);
}

@font-face {
  font-family: Khand;
  src: url(../fonts/Khand/Khand-Medium.ttf);
}

@font-face {
  font-family: Gupter;
  src: url(../fonts/Gupter/Gupter-Bold.ttf);
}

@font-face {
  font-family: Libre Baskerville;
  src: url(../fonts/Libre_Baskerville/LibreBaskerville-Regular.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* font-family: "Libre Baskerville", Arial, sans-serif; */
  /* font-family: "Gupter", Arial, sans-serif; */
  /* font-family: "Khand", Arial, sans-serif; */
  /* font-family: "Gentium Plus", Arial, sans-serif; */
  /* font-family: "Edu", Arial, sans-serif; */
  font-family: "Oswald", Arial, sans-serif;
  /* font-family: "Roboto", Arial, sans-serif; */
  /* font-family: "Inter", Arial, sans-serif; */
  /* font-family: "Open Sans", Arial, sans-serif; */
  /* font-weight: 400; */
  line-height: 1.6;
  color: #777;
  background-color: #d6d6d6;
  font-optical-sizing: auto;
  font-display: swap;
}

h2 {
  font-size: 28px;
}

.whatsapp-btn {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 3px solid #1bc05a;
  border-radius: 50%;
  background-image: linear-gradient(180deg, #57d163 6.25%, #23b33b 91.21%);
  animation: wave 1.2s linear 0s infinite;
}

.whatsapp-btn::before {
  content: "Whats App";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1001;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #1bc05a;
  text-align: center;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease-in;
}

.whatsapp-btn:hover::before {
  opacity: 0;
}

.whatsapp-btn__svg {
  width: 30px;
  height: 30px;
  /* animation: shake 2s ease-out 0.5s infinite; */
}

@keyframes shake {
  0%, 100% {
    transform: rotate(0deg);
    transform-origin: 50% 50%;
  }
  10% {
    transform: rotate(8deg);
  }
  20%, 40%, 60% {
    transform: rotate(-10deg);
  }
  30%, 50%, 70% {
    transform: rotate(10deg);
  }
  80% {
    transform: rotate(-8deg);
  }
  90% {
    transform: rotate(8deg);
  }
}

@keyframes wave {
  0% {
    box-shadow: 0 8px 10px rgba(7, 207, 84, 0.3), 0 0 0 0 rgba(7, 207, 114, 0.2), 0 0 0 0 rgba(7, 207, 84, 0.2);
  }
  40% {
    box-shadow: 0 8px 10px rgba(7, 207, 84, 0.3), 0 0 0 15px rgba(7, 207, 84, 0.2), 0 0 0 0 rgba(7, 207, 84, 0.2);
  }
  80% {
    box-shadow: 0 8px 10px rgba(7, 207, 84, 0.3), 0 0 0 30px rgba(7, 207, 84, 0), 0 0 0 27px rgba(7, 207, 84, 0.067);
  }
  100% {
    box-shadow: 0 8px 10px rgba(7, 207, 84, 0.3), 0 0 0 30px rgba(7, 207, 84, 0), 0 0 0 40px rgba(7, 207, 84, 0);
  }
}

.wrapper {
  position: fixed;
  bottom: 50px;
  right: -420px;
  max-width: 390px;
  width: 100%;
  background: #d6d6d6;
  border-radius: 8px;
  padding: 15px 25px 22px;
  transition: right 0.3s ease;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  max-height: 80vh;
  overflow-y: auto;
}
.wrapper.show {
  right: 40px;
  bottom: 80px;
}
.wrapper header {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
header i {
  color: #000;
  font-size: 32px;
}
header h2 {
  color: #000;
  font-weight: 500;
}
.wrapper .data {
  margin-top: 16px;
}
.wrapper .data p {
  color: #333;
  font-size: 16px;
}
.data p a {
  color: #4070f4;
  text-decoration: none;
}
.data p a:hover {
  text-decoration: underline;
}

/* Estilos para os tipos de cookies */
.cookie-types {
  margin: 15px 0;
  padding: 0;
}

.cookie-type {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  margin: 8px 0;
  padding: 10px 12px;
}

.cookie-type strong {
  color: #333;
  font-size: 14px;
  display: block;
  margin-bottom: 4px;
}

.cookie-type p {
  color: #666;
  font-size: 13px;
  margin: 0;
  line-height: 1.4;
}
.wrapper .buttons {
  margin-top: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.buttons .button {
  border: none;
  color: #fff;
  padding: 8px 0;
  border-radius: 4px;
  background: #000;
  cursor: pointer;
  width: calc(100% / 2 - 10px);
  transition: all 0.2s ease;
}
.buttons #acceptBtn:hover {
  background-color: #034bf1;
}
#declineBtn {
  border: 2px solid #000;
  background-color: #fff;
  color: #000;
}
#declineBtn:hover {
  background-color: #4070f4;
  color: #fff;
}

@media (max-width: 360px) {
  body {
    width: 100vw;
  }
}

/* Media queries para o modal de cookies */
@media (max-width: 768px) {
  .wrapper {
    right: auto;
    left: -100%;
    max-width: none;
    width: calc(100vw - 20px);
    bottom: 20px;
    margin: 0 10px;
  }
  
  .wrapper.show {
    left: 10px;
    right: 10px;
    bottom: 20px;
    transform: none;
  }
  
  .cookie-type {
    padding: 8px 10px;
  }
  
  .cookie-type strong {
    font-size: 13px;
  }
  
  .cookie-type p {
    font-size: 12px;
  }
  
  .wrapper .data p {
    font-size: 14px;
  }
  
  .buttons .button {
    padding: 10px 8px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .wrapper {
    padding: 12px 15px 18px;
    left: -100%;
    right: auto;
    width: calc(100vw - 10px);
    bottom: 15px;
    margin: 0 5px;
  }
  
  .wrapper.show {
    left: 5px;
    right: 5px;
    bottom: 15px;
  }
  
  .wrapper header {
    column-gap: 10px;
  }
  
  header i {
    font-size: 28px;
  }
  
  header h2 {
    font-size: 18px;
  }
  
  .cookie-types {
    margin: 12px 0;
  }
  
  .cookie-type {
    margin: 6px 0;
    padding: 8px;
  }
  
  .buttons .button {
    padding: 12px 8px;
    font-size: 13px;
  }
}

header {
  text-align: center;
}

img {
  max-inline-size: 100%;
  block-size: auto;
}
