@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('header.css');
@import url('home.css');
@import url('produtos.css');
@import url('testimonials.css');
@import url('footer.css');
@import url('about.css');


:root {
  --color-background: #E02424;
  --color-border: #ff5b5b;
  /* Textos */
  --color-text: #1A1A1A;
  --color-text-secondary: #292929;
  --color-text-highlight: #F9F5F0;
  /* Botões */
  --color-button: #F9F5F0;
  --color-button-hover: #E0DED9;
  --color-button-text: #FFFFFF;
}




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: var(--color-background);
}

section {
  padding: 28px 8%;

}

.btn_default {
  padding: 10px 10px;
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-text);
  color: var(--color-button-text);
  border: none;
  box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: .3s ease;
  transition: background-color .3s ease;
}

.btn_default:hover {
  background-color: var(--color-text-secondary);
}

.social-midia-button {
  display: flex;
  gap: 18px;
  ;
  background-color: var(--color-text);
  border-radius: 10px;
}

.social-midia-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  font-size: 1.25rem;
  border-radius: 10px;
  text-decoration: none;
  color: var(--color-text);
  box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
  transition: background-color .3s ease;
}

.social-midia-button a:hover {
  background-color: var(--color-text-secondary);
}

.section-title {
  font-size: 3rem;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 28px;
}

.section-subtitle {
  font-size: 1.5rem;
  text-align: center;
  color: var(--color-button);
  margin-bottom: 28px;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1EBE57;
  transform: scale(1.1);
}

.whatsapp-float i {
  margin-top: 15px;
}

@media screen and (max-width: 1170px) {
  :root {
    --color-background: #F13621;
      --color-border: #E02424;
  }
}