@import url(colors.css);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
}

header {
  width: 100%;
}

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


@keyframes translateY {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-8px) scale(1.1);
  }
}
.header-button {
  border: 1px solid #FFF;
  padding: 8px 24px;
  border-radius: 4px;
  color: #FFF;
  background-color: transparent;
  transition: background-color 0.8s;
}

.header-button:hover {
  border: 1px solid #d34040;
  background-color: #d34040;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .header-content {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .header-content i {
    margin-top: 16px;
    font-size: 34px;
  }
  .header-logo img {
    width: 250px;
  }
  .header-button {
    display: none;
  }
}
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 8px;
}

.bg-home {
  position: relative;
}

.bg-home::before {
  content: "";
  display: block;
  position: absolute;
  background-image: linear-gradient(to bottom, rgba(0,0,0,1) 15%, rgba(0,0,0,0.8743872549019608) 44%, rgba(0,0,0,0.6) 92%),
   url("../images/bg.jpeg");
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 0;
  opacity: 0.9;
}

.initial {
  color: #FFF;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.initial h1 {
  text-align: center;
  line-height: 150%;
  max-width: 940px;
  font-size: 46px;
}
.initial p {
  text-align: center;
  margin: 14px 0;
  font-size: 20px;
}

.button-contact {
  padding: 28px 42px;
  color: #FFF;
  background-color: green;
  border: 0;
  font-size: 18px;
  font-weight: 600;
  margin: 14px 0;
  border-radius: 10px;
  animation: scaleButton 0.8s alternate infinite;
}

.button-contact:hover {
  animation: scaleButton 0.8s alternate infinite;
}

@keyframes scaleButton {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.07);
  }
}
@media screen and (max-width: 768px) {
  .initial {
    min-height: 75vh;
  }
  .initial h1 {
    font-size: 32px;
    padding: 0 14px;
    width: 100%;
  }
  .initial p {
    font-size: 16px;
  }
  .button-contact{
    padding: 20px 34px;
  }
}

.interest {
  background-color: var(--red);
  overflow: hidden;
  color: #FFF;
  padding: 40px 20px 20px 0px;
}

.interest-content {
  margin-bottom: 20px;
}
.interest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin:  auto;
}

.interest-content img {
  height: 120px;
  width: 120px;
}

.interest-description h2 {
  font-size: 38px;
  text-align: center;
  margin-bottom: 24px;
}
.interest-description p {
  margin-bottom: 14px;
  line-height: 150%;
  max-width: 400px;
}

.title-figure{
  display: flex;
  gap: 10px;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .interest-content {
    flex-direction: column;
  }
  .interest{
    padding: 40px 10px 10px 0px;
  }
}


.services {
  background-color: var(--beige);
  color: #232224;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 0px 0px 0px;
}

.services-description{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-description h2 {
  text-transform: uppercase;
  text-align: center;
  font-size: 38px;
  margin-bottom: 32px;
}

.services-description p {
  line-height: 150%;
  margin-bottom: 24px;
  text-align: center;
  max-width: 780px;
}

.products {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 0 44px 30px 44px;
}

.conditions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 0 44px 34px 44px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}


.product {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: #FFF;
  border-radius: 8px;
  box-shadow: 0px -1px 17px -4px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}
.product img {
  width: 100%;
  max-width: 354px;
  transition: transform 0.2s;
}

.product img:hover {
  transform: scale(1.2);
  z-index: 1;
}

.product-info {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 14px;
  background-color: #FFF;
  z-index: 99;
}

.product-info button {
  color: #FFF;
  background-color: #d94140;
  padding: 4px 8px;
  border-radius: 4px;
  border: 0;
  cursor: default;
}

@media screen and (max-width: 768px) {
  .products {
    flex-direction: column;
  }
  .interest-row{
    flex-direction: column;
  }
  .interest-content{
    text-align: start;
  }
  .product img {
    max-width: 740px;
  }

  .termos{
    display: flex;
    flex-direction: column;
    border-bottom: 1px #999 solid;
  }
  .conditions {
    display: flex;
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }
}

.contact {
  background-color: var(--beige);
  color: #232224;
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  justify-content: center;
  padding: 56px 20px;
}

.footer {
  display: flex;
  background-color: var(--red);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 0 0 0;
  margin-top: 70px;
  text-align: center;
  color: #FFF;
}

.termos {
  width: 70%;
  display: flex;
  justify-content: space-around;
  border-top: 1px #999 solid;
  border-bottom: 1px #999 solid;
  padding: 18px;
  margin: 30px 0;
  text-align: center;
}

.termos a {
  text-decoration: underline;
}
.footer-icons {
  display: flex;
  gap: 8px;
  color: #FFF;
}

.btn-whatsapp {
  position: fixed;
  bottom: 14px;
  right: 24px;
  z-index: 99;
}
.btn-whatsapp img {
  max-width: 74px;
  transition: transform 0.4s;
}
.btn-whatsapp img:hover {
  transform: scale(1.1);
}

.btn-whatsapp .tooltip-text {
  visibility: hidden;
  position: absolute;
  width: 120px;
  top: 8px;
  left: -144px;
  padding: 6px;
  border-radius: 8px;
  text-align: center;
  background-color: #232224;
  color: #FFF;
  opacity: 0;
  transition: opacity 0.4s;
}

.btn-whatsapp:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

body {
  font-family: "Sora", sans-serif;
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: var(--beige);
}

button {
  font-family: "Sora", sans-serif;
  cursor: pointer;
}

svg {
  width: 100%;
}


a {
  cursor: pointer;
  color: #Fff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
.separador{
  width: 100%;
  display: flex;
  justify-content: center;
}
.separador hr {
  border: none;
  height: 2px;    
  width: 50%;
  background-color: #ccc; 
  margin: 20px 0; 
}

.secondary-header{
  width: 100%;
  display: flex;
  background-color: var(--red);
  justify-content: center;
  padding: 0px;
  border-bottom: 2px var(--red) solid;
}

.main{
  padding: 0 20% 0 20%;
}

@media screen and (max-width: 768px) {
  .btn-whatsapp img {
    max-width: 64px;
  }
  .main{
    padding: 0 0% 0 0%;
  }
}