@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/* Reset básico */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  line-height: 1.15; /* Ajusta o espaçamento entre linhas */
  -webkit-text-size-adjust: 100%; /* Corrige o ajuste de tamanho de texto no Safari */
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

main {
  display: block; /* Garante que o elemento main seja tratado como bloco */
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 1em 0;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  text-decoration: none;
  color: inherit;
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button:-moz-focusring,
input:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

.container {
  width: 100%;
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}

header {
  width: 100%;
  min-height: 10vh;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  background-color: white;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
header .container img {
  width: 5rem;
  height: auto;
}
header .container nav {
  display: flex;
  align-items: center;
}
header .container ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}
header .container ul li a {
  text-decoration: none;
  color: #8F5D46;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  position: relative;
  padding-bottom: 5px;
}
header .container ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #8F5D46;
  transition: width 0.3s ease;
}
header .container ul li a:hover {
  color: #E6B89C;
}
header .container ul li a:hover::after {
  width: 100%;
}

main {
  width: 100%;
  height: auto;
  overflow-x: hidden;
  margin-top: 10vh;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #4B3D3D;
  background-color: #fff;
}

section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}
@media (max-width: 576px) {
  section {
    padding: 40px 0;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 20px;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
}
h2 span {
  color: #8F5D46;
}
@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}
.btn-primary {
  background-color: #8F5D46;
  color: white;
  border: 2px solid #8F5D46;
}
.btn-primary:hover {
  background-color: rgb(108.7605633803, 70.7323943662, 53.2394366197);
  border-color: rgb(108.7605633803, 70.7323943662, 53.2394366197);
}
.btn-outline {
  background-color: transparent;
  color: #8F5D46;
  border: 2px solid #8F5D46;
}
.btn-outline:hover {
  background-color: #8F5D46;
  color: white;
}

.welcome {
  width: 100%;
  height: 100vh;
  background: url("/assets/images/bg-welcome.png") no-repeat center center/cover;
  position: relative;
}
.welcome::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.welcome .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
  text-align: center;
}
.welcome .container h1 {
  color: white;
  font-size: 4rem;
  margin: 20px 0;
}
@media (max-width: 768px) {
  .welcome .container h1 {
    font-size: 3rem;
  }
}
@media (max-width: 576px) {
  .welcome .container h1 {
    font-size: 2.5rem;
  }
}
.welcome .container h2 {
  color: #E6B89C;
  font-size: 1.8rem;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .welcome .container h2 {
    font-size: 1.5rem;
  }
}
.welcome .container .btn {
  margin-top: 20px;
}
.welcome .welcome-text {
  position: relative;
}
.welcome .welcome-text::before {
  content: "";
  height: 1px;
  width: 72px;
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  left: -88px;
  top: 12px;
}
@media (max-width: 576px) {
  .welcome .welcome-text::before {
    width: 30px;
    left: -40px;
  }
}
.welcome .welcome-text::after {
  content: "";
  height: 1px;
  width: 72px;
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  right: -88px;
  top: 12px;
}
@media (max-width: 576px) {
  .welcome .welcome-text::after {
    width: 30px;
    right: -40px;
  }
}
.welcome .welcome-text h4 {
  color: #E6B89C;
  font-size: 1.2rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
@media (max-width: 576px) {
  .welcome .welcome-text h4 {
    font-size: 1rem;
  }
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: #8F5D46;
  cursor: pointer;
}
@media (max-width: 992px) {
  .mobile-menu-btn {
    display: block;
  }
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 10vh;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 999;
  padding: 20px 0;
}
.mobile-menu.active {
  display: block;
}
.mobile-menu ul {
  list-style: none;
  padding: 0;
}
.mobile-menu ul li {
  text-align: center;
  margin-bottom: 15px;
}
.mobile-menu ul li a {
  display: block;
  padding: 10px;
  font-weight: 600;
  color: #8F5D46;
  transition: all 0.3s ease;
}
.mobile-menu ul li a:hover {
  color: #E6B89C;
}

@media (max-width: 992px) {
  .desktop-menu {
    display: none;
  }
}

.about {
  background-color: #fff;
}
.about .container {
  flex-direction: row;
  align-items: center;
  gap: 50px;
}
@media (max-width: 992px) {
  .about .container {
    flex-direction: column-reverse;
    gap: 30px;
  }
}
.about .about-text {
  flex: 1;
}
.about .about-text h2 {
  text-align: left;
}
@media (max-width: 992px) {
  .about .about-text h2 {
    text-align: center;
  }
}
.about .about-text p {
  margin-bottom: 20px;
}
.about .about-text .btn {
  margin-top: 10px;
}
.about .about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 25rem;
  position: relative;
  cursor: pointer;
}
.about .about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.about .about-image img:hover {
  transform: scale(1.05);
}
.about .about-image .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #8F5D46;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 2;
}
.about .about-image .play-button i {
  font-size: 1.7rem;
  margin-left: 5px;
}
.about .about-image .play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: rgb(108.7605633803, 70.7323943662, 53.2394366197);
}

.products {
  background-color: #f9f5f0;
}
.products .products-header {
  display: flex;
}
@media (max-width: 992px) {
  .products .products-header {
    flex-direction: column;
  }
}
.products .products-title {
  flex: 0 0 220px;
  padding-right: 30px;
}
.products .products-title h2 {
  font-size: 2.5rem;
  text-align: left;
  margin-bottom: 0;
}
.products .products-title h2 span {
  display: block;
  margin-top: -5px;
}
@media (max-width: 992px) {
  .products .products-title h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
  .products .products-title h2 span {
    display: inline;
  }
}
.products .products-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 992px) {
  .products .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .products .products-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.products .product-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.products .product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.products .product-card .product-image {
  height: 200px;
  overflow: hidden;
}
.products .product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.products .product-card .product-image img:hover {
  transform: scale(1.1);
}
.products .product-card h3 {
  padding: 15px 20px 0;
  font-size: 1.2rem;
  color: #4B3D3D;
}
.products .product-card p {
  padding: 0 20px;
  font-size: 0.9rem;
  color: rgb(131.25, 106.75, 106.75);
  margin-bottom: 15px;
}
.products .product-card .price {
  display: block;
  padding: 0 20px 20px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #8F5D46;
}

.catalog {
  background-color: #f9f5f0;
  padding: 80px 0;
}
.catalog .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 992px) {
  .catalog .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.catalog .catalog-text h2 {
  text-align: left;
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1.3;
}
@media (max-width: 992px) {
  .catalog .catalog-text h2 {
    text-align: center;
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .catalog .catalog-text h2 {
    font-size: 1.8rem;
  }
}
.catalog .catalog-text p {
  color: rgb(131.25, 106.75, 106.75);
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .catalog .catalog-text p {
    text-align: center;
  }
}
.catalog .btn-catalog {
  background-color: #8F5D46;
  color: white;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.catalog .btn-catalog:hover {
  background-color: rgb(108.7605633803, 70.7323943662, 53.2394366197);
}
@media (max-width: 992px) {
  .catalog .btn-catalog {
    margin: 0 auto;
    display: block;
    width: fit-content;
  }
}
.catalog .catalog-images {
  display: flex;
  gap: 20px;
}
.catalog .catalog-images .image-container {
  flex: 1;
  height: 350px;
  overflow: hidden;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .catalog .catalog-images .image-container {
    height: 250px;
  }
}
.catalog .catalog-images .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.catalog .catalog-images .image-container img:hover {
  transform: scale(1.05);
}

.testimonials {
  background-color: white;
}
.testimonials .testimonial-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 992px) {
  .testimonials .testimonial-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .testimonials .testimonial-cards {
    grid-template-columns: 1fr;
  }
}
.testimonials .testimonial-card {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.testimonials .testimonial-card:hover {
  transform: translateY(-5px);
}
.testimonials .testimonial-card .stars {
  color: #ffd700;
  margin-bottom: 15px;
  font-size: 1rem;
}
.testimonials .testimonial-card p {
  font-style: italic;
  margin-bottom: 20px;
}
.testimonials .testimonial-card .client {
  display: flex;
  align-items: center;
}
.testimonials .testimonial-card .client img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}
.testimonials .testimonial-card .client span {
  font-weight: 600;
  color: #4B3D3D;
}

.contact {
  background-color: white;
}
.contact .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
@media (max-width: 992px) {
  .contact .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.contact .contact-info h2 {
  text-align: left;
}
@media (max-width: 992px) {
  .contact .contact-info h2 {
    text-align: center;
  }
}
.contact .contact-info .info-item {
  display: flex;
  margin-bottom: 20px;
}
.contact .contact-info .info-item i {
  font-size: 1.5rem;
  color: #8F5D46;
  margin-right: 15px;
  margin-top: 3px;
}
.contact .contact-info .info-item p {
  margin: 0;
}
.contact .contact-info .social-media {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}
@media (max-width: 992px) {
  .contact .contact-info .social-media {
    justify-content: center;
  }
}
.contact .contact-info .social-media .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #8F5D46;
  color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.contact .contact-info .social-media .social-icon:hover {
  background-color: rgb(108.7605633803, 70.7323943662, 53.2394366197);
  transform: translateY(-5px);
}
.contact .contact-form {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.contact .contact-form .form-group {
  margin-bottom: 20px;
}
.contact .contact-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}
.contact .contact-form .form-group input, .contact .contact-form .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.contact .contact-form .form-group input:focus, .contact .contact-form .form-group textarea:focus {
  outline: none;
  border-color: #8F5D46;
}
.contact .contact-form .form-group textarea {
  resize: vertical;
}
.contact .contact-form button {
  width: 100%;
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.modal .close-modal {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  z-index: 1010;
  transition: color 0.3s, transform 0.3s;
}
.modal .close-modal:hover {
  color: #8F5D46;
  transform: scale(1.2);
}
.modal .video-container {
  position: relative;
  width: 85%;
  max-width: 960px;
  padding-bottom: 48%;
  height: 0;
  overflow: hidden;
}
.modal .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .modal .video-container {
    width: 95%;
    padding-bottom: 53%;
  }
}

footer {
  background-color: #4B3D3D;
  color: white;
  padding: 60px 0 20px;
}
footer .container {
  flex-direction: column;
}
footer .footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  footer .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  footer .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
footer .footer-logo img {
  width: 120px;
  margin-bottom: 15px;
}
footer .footer-logo p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}
footer .footer-links h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 20px;
}
footer .footer-links ul {
  list-style: none;
  padding: 0;
}
footer .footer-links ul li {
  margin-bottom: 10px;
}
footer .footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}
footer .footer-links ul li a:hover {
  color: #E6B89C;
}
footer .footer-contact h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 20px;
}
footer .footer-contact p {
  display: flex;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  font-size: 0.9rem;
}
footer .footer-contact p i {
  margin-right: 10px;
  margin-top: 5px;
}
footer .footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
footer .footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 992px) {
  .desktop-menu {
    display: none !important;
  }
}

/*# sourceMappingURL=main.css.map */
