:root{
  --bg: #f4f6f8;
  --bg-soft: #f7f7f7;
  --card: #ffffff;
  --text: #1f2328;
  --text-strong: #231f20;
  --muted: #5f6b76;
  --line: #e6e9ed;
  --line-soft: #eeeeee;
  --primary: #F58634;
  --primary-dark: #d96f21;
  --whatsapp: #34b242;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --shadow-soft: 0 8px 22px rgba(0,0,0,.05);
  --shadow-strong: 0 12px 34px rgba(0,0,0,.18);
  --radius: 20px;
  --radius-lg: 24px;
  --radius-xl: 28px;
}

/* =========================
   BASE GLOBAL INCORPORADA
========================= */
html{
  scroll-behavior: smooth;
}

#sobre,
#produto,
#blog{
  scroll-margin-top: 80px;
}

body{
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  color: #231f20;
  font-size: 14px;
  line-height: 1.6em;
  background: linear-gradient(180deg, var(--bg-soft) 0%, #ffffff 220px);
}

input, textarea, button{
  font-family: 'Open Sans', sans-serif;
}

input::placeholder,
textarea::placeholder{
  color: #83602f;
  padding-left: 10px;
  padding-right: 10px;
}

p{
  color: #231f20;
  font-weight: 400;
  letter-spacing: 0.3px;
  margin-bottom: 1.2em;
}

a{
  color: #c35709;
  font-weight: 600;
}

a:hover{
  color: #F58634;
}

a.link{
  position: relative;
  display: inline-block;
  text-decoration: none;
  transition: color 0.3s;
  color: #c35709;
  font-weight: 600;
}

a.link::after{
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 2px;
  background-color: #F58634;
  transition: transform 0.3s ease;
}

a.link:hover{
  color: #F58634;
  transition: transform 0.3s ease;
}

a.link:hover::after{
  transform: translateX(-50%) scaleX(1);
}

h1, h2, h3{
  font-family: 'Montserrat', serif;
  color: #6B6B6C;
}

h1{
  font-size: 28px;
  font-weight: 600;
  line-height: 1em;
  margin: 5px 0;
}

h2{
  font-size: 24px;
  font-weight: 600;
  line-height: 1em;
  margin: 5px 0;
}

h3{
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2em;
  margin: 5px 0;
}

/* formulário */
.form-group{
  margin-bottom: 0.5rem;
}

.form-control{
  width: 100%;
  padding: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-control:focus-visible{
  outline: 1px solid #231f20;
  background-color: #f7f7f7;
}

/* botões antigos */
.botao{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
  font-weight: 600;
  text-decoration: none;
}

.botao i{
  margin-right: 5px;
}

.fundo-laranja{
  border: 1px solid #db610a;
  background-color: #F58634;
  color: #fff;
}

.fundo-laranja:hover{
  background-color: #db610a;
}

/* ckeditor */
.ck-content{
  font-size: 14px;
  line-height: 1.6;
}

.ck-content h2,
.ck-content h3,
.ck-content h4,
.ck-content p{
  margin-bottom: 1.2em;
}

.ck-content strong,
.ck-content b{
  font-weight: 700;
}

.ck-content a{
  color: #F58634;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.ck-content a:hover{
  color: #c35709;
}

.ck-content em,
.ck-content i{
  font-style: italic;
}

.ck-content img{
  max-width: 100%;
  height: auto;
}

.ck-content figure{
  margin: 1em 0;
  text-align: center;
}

.ck-content figure.image-style-align-left{
  float: left;
  margin-right: 1em;
  max-width: 50%;
}

.ck-content figure.image-style-align-right{
  float: right;
  margin-left: 1em;
  max-width: 50%;
}

.ck-content figure.image-style-align-left img,
.ck-content figure.image-style-align-right img{
  width: 100%;
  height: auto;
  display: block;
}

.ck-content figcaption{
  font-size: 0.875em;
  color: #666;
  margin-top: 0.5em;
}

/* =========================
   NAV
========================= */
.nav{
  width: 100%;
  background-color: var(--bg-soft);
  border-bottom: 1px solid var(--primary);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  color: #6B6B6C;
  transition: height .3s ease, padding .3s ease, box-shadow .3s ease;
}

.nav.shrink{
  box-shadow: 0 2px 6px rgba(0,0,0,.3);
}

.nav .desktop{
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
}

.nav .desktop .logo img{
  height: 50px;
  transition: height .3s ease;
}

.nav.shrink .desktop .logo img{
  height: 40px;
}

.nav .desktop .menu{
  position: absolute;
  left: 50%;
  transform: translateX(-20%);
}

.nav .desktop .menu ul,
.nav .menu-mobile ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav .desktop .menu ul{
  display: flex;
  gap: 30px;
  position: relative;
}

.nav .desktop .menu ul li a,
.nav .menu-mobile ul li a,
footer .menu ul li a{
  position: relative;
  display: inline-block;
  text-decoration: none;
  transition: color .3s ease;
}

.nav .desktop .menu ul li a{
  color: #6B6B6C;
  font-weight: 500;
  font-size: 14px;
}

.nav .desktop .menu ul li a::after,
.nav .menu-mobile ul li a::after,
footer .menu ul li a::after{
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  transition: transform .3s ease;
}

.nav .desktop .menu ul li a::after,
footer .menu ul li a::after{
  bottom: -5px;
}

.nav .menu-mobile ul li a::after{
  bottom: -3px;
}

.nav .desktop .menu ul li a:hover,
.nav .menu-mobile ul li a:hover,
footer .menu ul li a:hover,
footer .dados li a:hover,
.nav .closebtn:hover{
  color: var(--primary);
}

.nav .desktop .menu ul li a:hover::after,
.nav .menu-mobile ul li a:hover::after,
footer .menu ul li a:hover::after{
  transform: translateX(-50%) scaleX(1);
}

.nav .nav-mobile{
  display: flex;
  width: 100%;
  justify-content: space-between;
  position: relative;
  height: 70px;
  align-items: center;
  background-color: var(--bg-soft);
  transition: height .3s ease, box-shadow .3s ease;
}

.nav .nav-mobile.shrink{
  height: 50px;
  box-shadow: 0 2px 6px rgba(0,0,0,.1);
}

.nav .nav-mobile .hamburger{
  font-size: 22px;
  cursor: pointer;
  z-index: 2;
  padding: 0 15px;
  transition: color .3s ease;
}

.nav .nav-mobile .hamburger:hover{
  color: var(--primary);
}

.nav .nav-mobile .logo-mobile{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.nav .nav-mobile .logo-mobile img{
  height: 40px;
  width: auto;
  padding-top: 5px;
  transition: height .3s ease;
}

.nav .nav-mobile.shrink .logo-mobile img{
  height: 26px;
}

.nav .menu-mobile{
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  background-color: var(--bg-soft);
  overflow-x: hidden;
  transition: .3s;
}

.nav .menu-mobile ul{
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nav .menu-mobile ul li a{
  color: #6B6B6C;
}

.nav .closebtn{
  font-size: 36px;
  display: block;
  padding: 15px;
  text-decoration: none;
  font-weight: 700;
  color: #6B6B6C;
  transition: color .3s ease;
}

.nav .overlay{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 998;
}

.nav .overlay.active{
  opacity: 1;
  pointer-events: all;
}

@media (max-width: 768px){
  .nav .desktop{
    display: none;
  }
}

@media (min-width: 769px){
  .nav{
    border-bottom: 5px solid var(--primary);
  }

  .nav .nav-mobile{
    display: none;
  }
}

/* =========================
   HERO MODERNO
========================= */
.page-hero-modern{
  padding: 100px 20px 40px;
}

@media only screen and (min-width:768px) {
  .page-hero-modern{
    padding: 120px 20px 40px;
  }
}

.page-hero-modern .wrap{
  max-width: 1200px;
  margin: 0 auto;
}

.breadcrumb-modern{
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 18px;
}

.breadcrumb-modern a{
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb-modern a:hover{
  color: var(--primary);
}

.hero-box{
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  background: linear-gradient(135deg, #eaeaea 0%, #ccc 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 28px;
  overflow: hidden;
  position: relative;
}

.hero-box::before{
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -120px;
  top: -120px;
  background: radial-gradient(circle, rgba(245,134,52,.14) 0%, rgba(245,134,52,0) 70%);
  pointer-events: none;
}

.hero-copy h1{
  font-size: 38px;
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--text);
}

.hero-copy .subtitulo{
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 20px;
  max-width: 60ch;
}

.hero-points{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}

.hero-points span{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  color: var(--text);
  box-shadow: 0 4px 14px rgba(0,0,0,.04);
}

.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-modern{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: .25s ease;
}

.btn-modern.primary{
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(245,134,52,.25);
}

.btn-modern.primary:hover{
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-modern.secondary{
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-modern.secondary:hover{
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.hero-visual .mockup{
  background: linear-gradient(135deg, #eef2f6 0%, #ffffff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-visual .mockup img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* =========================
   SEÇÕES / BOXES
========================= */
.section-modern{
  max-width: 1200px;
  margin: 0 auto 24px;
  padding: 0 20px;
}

.box-modern{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.box-modern h2{
  margin: 0 0 14px;
  font-size: 28px;
  color: var(--text);
}

.box-modern h3{
  margin: 0 0 10px;
  font-size: 20px;
  color: var(--text);
}

.box-modern p,
.box-modern li{
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.grid-2,
.grid-4,
.compare-box{
  display: grid;
  grid-template-columns: 1fr;
}

.grid-2{
  gap: 24px;
}

.grid-4{
  gap: 18px;
}

.compare-box{
  gap: 18px;
}

.info-card{
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.info-card .icon,
.compare-item .icon{
  color: var(--primary);
  font-size: 22px;
}

.info-card .icon{
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,134,52,.12);
  margin-bottom: 14px;
}

.list-modern{
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-modern li{
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.list-modern li::before{
  content: "\f00c";
  font-family: FontAwesome;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary);
}

.compare-item{
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  background: #fff;
}

.compare-item .icon{
  margin-bottom: 10px;
}

.faq-modern{
  display: grid;
  gap: 16px;
}

.faq-item-modern{
  border: 1px solid var(--line);
  border-radius: 16px;
/*  padding: 22px;*/
  background: #fff;
}

.faq-modern{
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.faq-item-modern{
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow .25s ease, border-color .25s ease;
}

.faq-item-modern:hover{
  border-color: rgba(245,134,52,.45);
  box-shadow: 0 8px 20px rgba(0,0,0,.05);
}

.faq-question{
  width: 100%;
  background: #fff;
  border: 0;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  cursor: pointer;
  font-family: 'Montserrat', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.faq-question:hover{
  background: #fcfcfc;
}

.faq-question span{
  flex: 1;
}

.faq-icon{
  flex-shrink: 0;
  color: var(--primary);
  font-size: 16px;
  transition: transform .25s ease;
}

.faq-item-modern.active .faq-icon{
  transform: rotate(45deg);
}

.faq-answer{
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 22px;
}

.faq-answer p{
  margin: 0;
  padding-bottom: 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.faq-item-modern.active .faq-answer{
  max-height: 400px;
  padding: 0 22px;
}

.cta-modern{
  background: linear-gradient(135deg, #1f2328 0%, #313842 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-strong);
}

.cta-modern h2,
.cta-modern p{
  color: #fff;
}

.cta-modern .btn-modern.secondary{
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.18);
}

.cta-modern .btn-modern.secondary:hover{
  background: rgba(255,255,255,.14);
  color: #fff;
}

/* =========================
   FOOTER
========================= */
footer{
  background-color: var(--bg-soft);
  border-top: 1px solid var(--primary);
}

footer .logo{
  text-align: center;
  padding: 20px;
}

footer .logo img{
  height: 40px;
  width: auto;
}

footer .menu,
footer .dados{
  padding-left: 20px;
  padding-right: 20px;
}

footer .menu ul{
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

footer .menu ul li{
  display: inline-block;
  margin: 5px 10px;
}

footer .menu ul li a{
  color: var(--text-strong);
}

footer .dados{
  text-align: center;
}

footer .dados li{
  list-style-type: none;
  margin-bottom: 6px;
}

footer .dados li a{
  text-decoration: none;
  color: var(--text-strong);
  transition: color .3s ease;
}

footer .rodape{
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #666;
  padding: 5px 20px;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}

footer .rodape li,
footer .rodape li a{
  list-style: none;
  font-size: 12px;
  text-decoration: none;
  color: var(--text-strong);
}

footer .rodape .criador img{
  height: 20px;
  width: auto;
}

/* =========================
   WHATSAPP FLOAT / TOOLTIP
========================= */
footer .contato{
  position: fixed;
  bottom: 30px;
  right: 0;
  z-index: 999;
  padding: 5px;
}

footer .contato a{
  position: relative;
  display: inline-block;
}

.contato img{
  width: 60px;
  animation: shake 3s infinite ease-in-out;
  transition: transform .3s ease;
  cursor: pointer;
}

.contato img:hover{
  transform: scale(1.15);
  animation: none;
}

@keyframes shake{
  0% { transform: rotate(0deg); }
  20% { transform: rotate(-8deg); }
  40% { transform: rotate(8deg); }
  60% { transform: rotate(-5deg); }
  80% { transform: rotate(5deg); }
  100% { transform: rotate(0deg); }
}

.tooltip{
  visibility: hidden;
  opacity: 0;
  background-color: var(--whatsapp);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  position: absolute;
  right: 70px;
  bottom: 20px;
  white-space: nowrap;
  transition: opacity .3s ease;
  box-shadow: 0 0 6px rgba(0,0,0,.3);
}

.tooltip::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent var(--whatsapp);
}

.contato a:hover .tooltip{
  visibility: visible;
  opacity: 1;
}

/* =========================
   RESPONSIVO
========================= */
@media only screen and (min-width: 1000px){
  h1{
    font-size: 38px;
  }

  h2{
    font-size: 28px;
  }
}

@media only screen and (min-width: 1900px){
  h3{
    font-size: 24px;
  }
}

@media (min-width: 900px){
  .hero-box{
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    padding: 40px;
  }

  .grid-2{
    grid-template-columns: 1fr 1fr;
  }

  .grid-4{
    grid-template-columns: repeat(2, 1fr);
  }

  .compare-box{
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1200px){
  .grid-4{
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-copy h1{
    font-size: 46px;
  }
}