/* Reset e estilos base */
@charset "UTF-8";
* {
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
	vertical-align: baseline;
	box-sizing: border-box;
}
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

html {
  min-height: 100%;
  min-width: 100%;
  -ms-text-size-adjust: none;
}

body {
  margin: 0;
  text-align: left;
	background: #e4eee9;
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
  appearance: button;
}

button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  border-style: none;
  padding: 0;
}


body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

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

/* Container */
.container {
  width: 100%;
  padding: 0px;
  margin: 0 auto;
}

/* Grid system */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col {
  width: 100%;
  padding: 0 15px;
  margin-bottom: 20px;
}

/* Typography */
h1, h2, h3 {
	margin-bottom: 15px;
    font-size: 24px;
}

p {
  margin-bottom: 15px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #0056b3;
}

/* Sections */
section {
  padding: 0px 0;
}




.subtitle {
    font-size: 20px;
    font-weight: 500;
}

.alert {
    font-size: 16px;
    font-weight: 500;
	color: red;
}



/* Hero */
.hero {
background-color: #fff;
    text-align: center;
    padding: 0px 0;
    line-height: 0px;
}

/* Testimonials */
.testimonial {
    text-align: center;
    background: #fff;
    border-radius: 25px;
    padding: 10px 5px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Product */
.product {
  text-align: center;
}


/* Banners */
.banners {
    display: inline-block;
    text-align: center;
    margin: 15px auto;
}


.btn-reviews {
display: inline-block;
    width: 100%;
    max-width: 300px;
    margin: 10px auto;
    align-items: center;
    padding: 10px 20px;
    background-color: #f00;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 22px;
    text-decoration: none;
}

.icon-fb::before {
    content: "";
    position: absolute;
    left: 10px;
    width: 24px; /* Largura da imagem */
    height: 24px; /* Altura da imagem */
    background-image: url('icone.png'); /* Caminho para sua imagem */
    background-size: cover;
    background-repeat: no-repeat;
}




/* Footer */
footer {
  background-color: #333;
  color: #fff;
  padding: 40px 0;
}

.footer-about a {
    color: #fff;
}




.flex-container {
display: flex;
    gap: 5px;
    width: 100%;
    max-width: 640px;
}

.column {
flex: 1;
    background-color: #fff;
    padding: 3px;
    /* border: 1px solid #ddd; */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.column-1 {
    /* Estilos específicos para a coluna 1, se necessário */
}

.column-2 {
    /* Estilos específicos para a coluna 2, se necessário */
}


.flex-buttom {
    display: flex;
    justify-content: space-between; /* Distribui igualmente os botões */
    gap: 10px; /* Espaçamento entre os botões */
    width: 100%;
}


/* Responsive breakpoints */
@media (min-width: 320px) {
  .container {
    width: 100%;
	padding: 8px;
    margin: 0 auto;
    text-align: center;
  }
}

/* Responsive breakpoints */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
	padding: 8px;
    margin: 0 auto;
    text-align: center;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
	padding: 8px;
    margin: 0 auto;
    text-align: center;
  }
  
  .col-md-6 {
    width: 50%;
  }
  
  .col-md-4 {
    width: 33.333333%;
  }
  
  .col-md-3 {
    width: 25%;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
	padding: 5px;
    margin: 0 auto;
    text-align: center;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
	padding: 5px;
    margin: 0 auto;
    text-align: center;
  }
}