@charset "UTF-8";

/* ==========================================================================
   ESTILOS DA PÁGINA DE INFORMAÇÕES (SEO) - BRAVICTA
   ========================================================================== */

:root {
  --copper: #A85D25;        
  --copper-light: #E0873F;  
  --copper-dark: #6E3814;   
  --bronze-graphite: #3B2A1C;      
  --bronze-graphite-dark: #241811; 
  --aluminum: #B7B4A4;    
  --aluminum-light: #DAD8CD; 

  --theme-color: var(--copper);
  --theme-color2: var(--bronze-graphite);
  --theme-color3: var(--aluminum);
  --theme-color4: var(--aluminum);
}

.seo-page .prodintSwiper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(220, 150, 90, 0.22);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
  background: rgba(28, 20, 13, 0.85);
}

.seo-page .prodintSwiper .swiper-slide {
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #251B12;
}

@media (max-width: 576px) {
  .seo-page .prodintSwiper .swiper-slide {
    height: 280px;
  }
}

.seo-page .prodintSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.seo-page .prodintSwiper .swiper-slide:hover img {
  transform: scale(1.04);
}

.seo-page .boxExpand {
  background: rgba(28, 20, 13, 0.85);
  border: 1px solid rgba(220, 150, 90, 0.22);
  border-radius: 16px;
  padding: 32px 30px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
  position: relative;
  backdrop-filter: blur(12px);
  margin-top: 1.5rem;
}

@media (max-width: 576px) {
  .seo-page .boxExpand {
    padding: 22px 18px;
  }
}

.seo-page .boxExpand #contentExpand {
  position: relative;
  max-height: 240px;
  overflow: hidden;
  transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  color: rgba(229, 224, 216, 0.88);
}

.seo-page .boxExpand #contentExpand::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(28, 20, 13, 0.98) 20%, rgba(28, 20, 13, 0) 100%);
  z-index: 3;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.seo-page .boxExpand #contentExpand.expanded {
  max-height: 8000px;
}

.seo-page .boxExpand #contentExpand.expanded::before {
  opacity: 0;
  pointer-events: none;
}

.seo-page .boxExpand #contentExpand h1,
.seo-page .boxExpand #contentExpand h2,
.seo-page .boxExpand #contentExpand h3,
.seo-page .boxExpand #contentExpand h4 {
  color: #ffffff;
  font-weight: 800;
  margin-top: 1.8rem;
  margin-bottom: 0.85rem;
}

.seo-page .boxExpand #contentExpand h2 {
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  border-bottom: 1px solid rgba(220, 150, 90, 0.25);
  padding-bottom: 8px;
}

.seo-page .boxExpand #contentExpand h3 {
  font-size: clamp(1.1rem, 1.6vw, 1.28rem);
  color: #DC965A;
}

.seo-page .boxExpand #contentExpand p {
  color: rgba(229, 224, 216, 0.88);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.seo-page .boxExpand #contentExpand ul,
.seo-page .boxExpand #contentExpand ol {
  margin-bottom: 1.5rem;
  padding-left: 1.4rem;
}

.seo-page .boxExpand #contentExpand ul li,
.seo-page .boxExpand #contentExpand ol li {
  color: rgba(229, 224, 216, 0.85);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.seo-page .boxExpand #contentExpand a {
  color: #DC965A;
  font-weight: 600;
  text-decoration: underline;
}

.seo-page .boxExpand #contentExpand a:hover {
  color: #ffffff;
}

.seo-page .boxExpand .btn-expand-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 1.2rem;
  position: relative;
  z-index: 5;
}

.seo-page .boxExpand .btn-expand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #DC965A 0%, #B86D2F 100%);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid #DC965A;
  box-shadow: 0 6px 18px rgba(184, 109, 47, 0.35);
  cursor: pointer;
  transition: all 0.3s ease;
}

.seo-page .boxExpand .btn-expand i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.seo-page .boxExpand .btn-expand:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(184, 109, 47, 0.48);
  color: #ffffff;
}

.menuLateral {
  background: rgba(28, 20, 13, 0.85);
  border: 1px solid rgba(220, 150, 90, 0.22);
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.menuLateral .title {
  font-size: 1.18rem;
  font-weight: 800;
  color: #ffffff;
  border: none;
  border-bottom: 2px solid rgba(220, 150, 90, 0.25);
  padding: 0 0 10px 0;
  margin-bottom: 16px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.menuLateral ul {
  list-style: none !important;
  padding: 0;
  margin: 0;
}

.menuLateral ul li {
  list-style: none !important;
  padding: 0;
  margin-bottom: 8px;
}

.menuLateral ul li a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(37, 27, 18, 0.45);
  color: rgba(229, 224, 216, 0.85) !important;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  border: 1px solid rgba(220, 150, 90, 0.12);
  transition: all 0.25s ease;
}

.menuLateral ul li a:hover {
  background: rgba(184, 109, 47, 0.15);
  color: #DC965A !important;
  border-color: rgba(220, 150, 90, 0.4);
  padding-left: 18px;
}

.menuLateral ul li.active a,
.menuLateral ul li a.active {
  background: rgba(184, 109, 47, 0.22);
  color: #DC965A !important;
  font-weight: 700;
  border-left: 4px solid #DC965A;
  border-color: rgba(220, 150, 90, 0.45);
  padding-left: 16px;
}

.btn-main {
  width: fit-content !important;
  padding: 12px 24px;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(var(--copper), 0.45);
  color: #ffffff;
}
.whats-form {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  border-color: #25D366 !important;
  color: #ffffff !important;
  box-shadow: 0 6px 18px rgba(#25D366, 0.25) !important;
  margin-left: 0;
}
.btn-main::after,
.whats-form::after {
  display: none !important;
  background-color: rgba(#128C7E, 0.5) !important;
}

.whats-form:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 24px rgba(#25D366, 0.4) !important;
}