.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header{padding-inline-end:0px;padding-inline-start:0px;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ======== FONTES ======== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500&display=swap');

/* ======== RESET BÁSICO ======== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}

body {
  line-height: 1.6;
  color: #3a3d31;
  background-color: #fff;
}

/* ======== HEADER ======== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  z-index: 1000;
}

header .logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.6em;
  color: #3a3d31;
}

header nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

header nav ul li a {
  text-decoration: none;
  color: #3a3d31;
  font-weight: 500;
  transition: color 0.3s;
}

header nav ul li a:hover {
  color: #d19548;
}

header .cta-btn {
  background: #d19548;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

header .cta-btn:hover {
  background: #b47f3a;
}

/* ======== BANNER HERO ======== */
.hero {
  height: 90vh;
  background: url('banner-hero.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 60px;
  color: #fff;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
  font-family: 'Montserrat', sans-serif;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 15px;
  font-weight: 700;
}

.hero p {
  font-size: 1.3em;
  margin-bottom: 25px;
  font-weight: 500;
}

.hero .hero-btn {
  display: flex;
  gap: 15px;
}

.hero .hero-btn a {
  background: #d19548;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.hero .hero-btn a:hover {
  background: #b47f3a;
}

/* ======== QUEM SOMOS ======== */
.section-quem-somos {
  padding: 80px 50px;
  text-align: center;
}

.section-quem-somos p {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 20px auto;
}

.section-quem-somos a {
  text-decoration: none;
  color: #d19548;
  font-weight: bold;
}

.section-quem-somos a:hover {
  color: #b47f3a;
}

/* ======== SERVIÇOS ======== */
.section-servicos {
  padding: 80px 50px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.servico-card {
  background: #f9f9f9;
  width: 250px;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.servico-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.servico-card img {
  max-width: 80px;
  margin-bottom: 15px;
}

.servico-card h3 {
  margin-bottom: 10px;
  font-size: 1.2em;
  font-family: 'Montserrat', sans-serif;
}

/* ======== ATACADO ======== */
.section-atacado {
  background: #3a3d31;
  color: #fff;
  text-align: center;
  padding: 80px 50px;
  border-radius: 12px;
}

.section-atacado a {
  display: inline-block;
  margin-top: 20px;
  background: #d19548;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.section-atacado a:hover {
  background: #b47f3a;
  color: #fff;
}

/* ======== DIFERENCIAIS ======== */
.section-diferenciais {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 80px 50px;
  gap: 20px;
}

.diferencial-card {
  background: #f9f9f9;
  width: 220px;
  padding: 25px 15px;
  border-radius: 12px;
  text-align: center;
}

.diferencial-card img {
  max-width: 60px;
  margin-bottom: 10px;
}

.diferencial-card p {
  font-size: 1em;
  font-weight: 500;
}

/* ======== DEPOIMENTO ======== */
.section-depoimento {
  background: #f1f1f1;
  padding: 80px 50px;
  text-align: center;
}

.depoimento-card {
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
}

/* ======== NOTÍCIAS / EVENTOS ======== */
.section-noticias {
  padding: 80px 50px;
  text-align: center;
}

.noticia-card {
  background: #d19548;
  color: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  display: inline-block;
  transition: background 0.3s;
}

.noticia-card a {
  display: block;
  margin-top: 15px;
  color: #fff;
  font-weight: bold;
  text-decoration: underline;
}

.noticia-card:hover {
  background: #b47f3a;
}

/* ======== CALL TO ACTION FINAL ======== */
.section-cta-final {
  background: url('cta-equipe.jpg') center/cover no-repeat;
  text-align: center;
  padding: 120px 50px;
  color: #fff;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
  font-family: 'Montserrat', sans-serif;
}

.section-cta-final a {
  display: inline-block;
  margin-top: 25px;
  background: #d19548;
  color: #fff;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.section-cta-final a:hover {
  background: #b47f3a;
}

/* ======== FOOTER ======== */
footer {
  background: #3a3d31;
  color: #fff;
  padding: 50px;
  text-align: center;
}

footer a {
  color: #d19548;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

footer .social-icons {
  margin-top: 20px;
}

footer .social-icons a {
  margin: 0 10px;
  font-size: 1.5em;
}/* End custom CSS */