@charset "UTF-8";@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

:root {
  --color-primary: #000b1f;
  --color-primary-light: #0d254c;
  --color-accent: #bda068;
  --color-accent-hover: #9c804b;
  --color-text: #2f2f2f;
  --color-text-light: #666666;
  --color-bg: #ffffff;
  --color-bg-alt: #f6f5f2;
  --font-sans: 'Open Sans', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

/* Base resets */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  font-size: 16px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

/* Helpers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

.section-padding {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 50px 0;
  }
}
/* Grid system */
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

.col-12 {
  grid-column: span 12;
}

.col-8 {
  grid-column: span 8;
}

.col-6 {
  grid-column: span 6;
}

.col-4 {
  grid-column: span 4;
}

.col-3 {
  grid-column: span 3;
}

@media (max-width: 992px) {
  .col-8,
  .col-6,
  .col-4,
  .col-3 {
    grid-column: span 6;
  }
}
@media (max-width: 600px) {
  .col-8,
  .col-6,
  .col-4,
  .col-3 {
    grid-column: span 12;
  }
  .grid {
    gap: 20px;
  }
}
/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-sans);
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.2;
}

.serif-title {
  font-family: var(--font-serif);
}

.section-title {
  font-size: 36px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  position: relative;
}

.section-subtitle {
  font-size: 24px;
  font-weight: 400;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 30px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-sans);
}

.btn-primary {
  background-color: var(--color-accent);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--color-accent);
  color: #ffffff;
}

/* Navbar */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}

.nav-logo img {
  height: 52px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-link {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
  letter-spacing: 1px;
  padding: 5px 0;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--color-accent);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after,
.current-menu-item > .nav-link::after,
.current_page_item > .nav-link::after,
.current-menu-ancestor > .nav-link::after {
  width: 100%;
}

.nav-cta .btn {
  padding: 10px 20px;
  font-size: 12px;
}

/* Burger Toggle Mobile */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1010;
}

.burger-bar {
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  transition: all 0.3s ease;
}

/* Responsive Navigation Wrappers */
.mobile-only {
  display: none !important;
}

/* Mobile Nav Drawer */
@media (max-width: 992px) {
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: block !important;
  }
  .nav-cta {
    display: none;
  }
  .burger-menu {
    display: flex;
    z-index: 1010;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    transition: right 0.4s ease;
    z-index: 1005;
    padding: 80px 40px 40px;
    overflow-y: auto;
  }
  .nav-menu.open {
    right: 0;
  }
  /* Link styles for mobile */
  .nav-menu .nav-link {
    font-weight: 500;
    color: var(--color-accent);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 0;
  }
  /* Make sub-menu items visible and flat in mobile */
  .nav-menu .sub-menu {
    position: static;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    padding: 10px 0 0 20px;
    background-color: transparent !important;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .nav-menu .sub-menu::before {
    display: none;
  }
  .nav-menu li.menu-item-has-children > .sub-menu {
    display: flex;
  }
  /* Hide the chevron in mobile since it's fully expanded */
  .nav-menu .icon-angle-down {
    display: none;
  }
  /* Burger toggle animation to X */
  .burger-menu.open {
    position: fixed;
    right: 20px;
    top: 35px;
  }
  .burger-menu.open .burger-bar {
    background-color: var(--color-text);
  }
  .burger-menu.open .burger-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger-menu.open .burger-bar:nth-child(2) {
    opacity: 0;
  }
  .burger-menu.open .burger-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}
/* Hero Section / Banner Slider */
.hero-slider {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
  background-color: var(--color-primary);
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  padding: 0 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 54px;
  margin-bottom: 20px;
  font-weight: 500;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 35px;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .hero-slider {
    height: 400px;
  }
  .hero-title {
    font-size: 36px;
  }
  .hero-subtitle {
    font-size: 14px;
  }
}
/* Footer styles */
.site-footer {
  background-color: var(--color-bg-alt);
  color: var(--color-text);
  border-top: 1px solid #e2e2e2;
  padding-top: 60px;
  padding-bottom: 20px;
  font-size: 14px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1.3fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.footer-col-title {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-address {
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-top: 15px;
}

.footer-badges {
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-contact-info {
  line-height: 1.8;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  justify-content: flex-start;
}

.social-icon img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.social-icon:hover img {
  transform: scale(1.1);
}

.footer-bottom {
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: var(--color-text-light);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

/* Advantage Card */
.advantage-card {
  background-color: #ffffff;
  border: 1px solid #eaeaea;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-color: var(--color-accent);
}

.advantage-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.advantage-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.advantage-desc {
  font-size: 14px;
  color: var(--color-text-light);
}

/* Category card */
.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 300px;
  display: flex;
  align-items: flex-end;
  padding: 30px;
}

.category-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  z-index: 1;
}

.category-card:hover .category-card-bg {
  transform: scale(1.05);
}

.category-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 2;
}

.category-card-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
}

.category-card-title {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 10px;
}

/* Form Styles */
.contact-form {
  background-color: var(--color-bg-alt);
  padding: 40px;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-primary);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  font-size: 14px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-family: var(--font-sans);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
}

/* =========================================
   Responsive visibility utilities
   ========================================= */
/* Hide on mobile, show on desktop */
.hide-mobile {
  display: block;
}

/* Show only on mobile (hidden on desktop) */
.show-only-mobile {
  display: none;
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
  .show-only-mobile {
    display: block !important;
  }
}
/* Picture element: swap src via responsive sources */
picture img {
  width: 100%;
  display: block;
}

/* Page banner section */
.page-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* ─── Hero Banner — Idêntico ao Duda (background-size: contain / height: 656px) ─── */
/* Seção wrapper: full-width, sem margens */
.hero-full {
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
}

/* Link wrapper (quando o banner é clicável) */
.hero-banner-link {
  display: block;
  width: 100%;
}

/*
 * Slide container — replica exatamente:
 *   div.u_1326857433  → height: 656px; width: 100%
 *   li                → background-size: contain; background-repeat: no-repeat;
 *                        background-position: center center; background-color: #fff
 */
.hero-banner-slide {
  background-image: var(--hero-bg-desktop);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #ffffff;
  width: 100%;
  height: 656px;
  margin: 0;
  padding: 0;
}

/* Desktop/tablet: esconde a img mobile (regra base — sobrescrita pelo @media abaixo) */
.hero-banner-mobile-img {
  display: none;
}

/* Mobile: img real, dimensiona pela proporção natural da imagem */
@media (max-width: 768px) {
  .hero-banner-slide {
    background-image: none;
    height: auto;
    background-color: transparent;
  }
  .hero-banner-mobile-img {
    display: block;
    width: 100%;
    height: auto;
  }
}
/* Tablet intermediário */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-banner-slide {
    height: 450px;
  }
}
/* Dropdown Menu Styles */
.nav-menu li.menu-item-has-children {
  position: relative;
}

/* Chevron arrow — mesmo "v" do site original */
.icon-angle-down {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 5px;
  vertical-align: middle;
  transition: transform 0.25s ease;
  position: relative;
  top: -1px;
}

/* Aponta para cima ao abrir o dropdown */
.nav-menu li.menu-item-has-children:hover .icon-angle-down {
  transform: rotate(-135deg) translateY(-2px);
}

/* Submenu: visibilidade por opacity/pointer-events para evitar gap no hover */
.nav-menu .sub-menu {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  /* padding-top cria uma ponte invisível entre o link pai e a caixa */
  padding-top: 8px;
  min-width: 220px;
  z-index: 1001;
  list-style: none;
  background-color: #ffffff !important;
  background-image: none !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.nav-menu li.menu-item-has-children:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  animation: fadeInDown 0.25s ease;
}

.nav-menu .sub-menu li {
  display: block;
  width: 100%;
}

.nav-menu .sub-menu li a {
  display: block;
  padding: 11px 22px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.nav-menu .sub-menu li a:hover,
.nav-menu .sub-menu li.current-menu-item > a {
  background-color: var(--color-accent);
  color: #ffffff;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*
 * Footer — Layout Idêntico à Imagem Original
 */
/* ── Wrapper externo ── */
.site-footer {
  background-color: #f6f6f6;
  /* Fundo cinza claríssimo quase branco */
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Open Sans", "Open Sans Fallback", sans-serif;
}

/* ── Container interno ── */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 40px 30px;
}

/* ──────────────────────────────────────────
   LINHA 1 — 3 colunas
   ────────────────────────────────────────── */
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 20px;
}

/* ── Col 1: Links de navegação ── */
.footer-col--links {
  position: relative;
  /* Mini divisor dourado/cinza em cima de "HOME" */
}
.footer-col--links::before {
  content: "";
  display: block;
  width: 35px;
  border-top-width: 1px !important;
  border-top-style: solid !important;
  color: rgb(0, 0, 0) !important;
  margin-bottom: 12px;
}
.footer-col--links .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col--links .footer-nav a {
  font-size: 13px;
  font-weight: 600;
  color: #000000;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1.2;
  display: block;
}
.footer-col--links .footer-nav a:hover {
  color: var(--color-accent, #d2a85e);
}
.footer-col--links .footer-nav {
  /* A política de privacidade costuma ter um tom um pouco mais claro ou peso menor na imagem original */
}
.footer-col--links .footer-nav a:last-child {
  color: #777777;
}

/* ── Col 2: Endereço + Logo + Insta ── */
.footer-col--address {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-col--address .footer-address {
  color: rgb(0, 0, 0);
  display: initial;
  font-family: "Open Sans", "Open Sans Fallback";
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 0;
}
.footer-col--address .footer-logo {
  display: block;
  max-width: 180px;
  /* logo alinhado a esquerda */
  height: auto;
}
.footer-col--address .footer-social-instagram {
  /* Deslocado mais para o centro relativo ao logo */
}
.footer-col--address .footer-social-instagram a {
  display: inline-block;
  line-height: 0;
}
.footer-col--address .footer-social-instagram a .social-icon-img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

/* ── Col 3: Badges + Contato + FB ── */
.footer-col--contact {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-col--contact .footer-central-atendimento {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-col--contact .footer-central-atendimento .central-atendimento-icon {
  width: auto;
  height: 26px;
  object-fit: contain;
  /* Aplica um filtro dourado se o icone original for preto, caso contrario ele renderiza normalmente */
}
.footer-col--contact .footer-central-atendimento .central-atendimento-text {
  font-size: 14px;
  font-weight: 700;
  color: #d2a85e;
  /* cor dourada idêntica ao original */
  text-transform: uppercase;
}
.footer-col--contact .footer-contact-info p {
  color: rgb(0, 0, 0);
  font-family: "Open Sans", "Open Sans Fallback";
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}
.footer-col--contact .footer-social-facebook {
  align-self: flex-end;
  margin-top: 15px;
  margin-right: 20px;
}
.footer-col--contact .footer-social-facebook a {
  display: inline-block;
  line-height: 0;
}
.footer-col--contact .footer-social-facebook a .social-icon-img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

/* ──────────────────────────────────────────
   LINHA 3 — Divisor + Copyright
   ────────────────────────────────────────── */
.footer-bottom {
  text-align: center;
  padding-top: 10px;
}
.footer-bottom p {
  font-size: 12px;
  font-weight: 400;
  color: #000000;
  margin: 0;
  line-height: 1.5;
}
.footer-bottom p a {
  color: #000000;
  text-decoration: underline;
}
.footer-bottom p a:hover {
  color: var(--color-accent, #d2a85e);
}

/* ──────────────────────────────────────────
   RESPONSIVO
   ────────────────────────────────────────── */
@media (max-width: 992px) {
  .footer-inner {
    padding: 50px 30px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  /* Coluna de endereço vai para linha abaixo no tablet e ocupa 2 colunas */
  .footer-col--address {
    grid-column: span 2;
    order: 3;
    align-items: center;
    text-align: center;
  }
  .footer-col--address .footer-address {
    text-align: center;
  }
  .footer-col--address .footer-social-instagram {
    margin-left: 0;
  }
  .footer-col--contact .footer-social-facebook {
    align-self: center;
    margin-right: 0;
  }
}
@media (max-width: 600px) {
  .footer-inner {
    padding: 40px 20px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-col--address {
    grid-column: span 1;
    order: unset;
  }
  .footer-col--links::before {
    margin: 0 auto 12px;
  }
  .footer-col--links,
  .footer-col--contact {
    align-items: center;
    text-align: center;
  }
  .footer-nav a {
    text-align: center;
  }
  .footer-central-atendimento {
    justify-content: center;
  }
}
/* =========================================
   ESCAPE do grid restrito do tema pai
   Todas as seções desta página precisam de
   grid-column: 1 / -1 para sair do --width-wrap
   ========================================= */
.produtos-hero-wrap,
.section-padding,
.produtos-gallery-section,
.produtos-cta-banner {
  grid-column: 1/-1 !important;
  width: 100%;
  box-sizing: border-box;
}

/* ── Galeria: coluna grande + 4 empilhadas ── */
.produtos-gallery-section {
  background: #ffffff;
  padding: 0 40px 64px;
}

.produtos-gallery-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 10px;
  align-items: start;
}

.produtos-gallery-main {
  overflow: hidden;
  line-height: 0;
}

.produtos-gallery-main a {
  display: block;
  line-height: 0;
}

.produtos-gallery-main img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.45s ease;
}

.produtos-gallery-main:hover img {
  transform: scale(1.02);
}

.produtos-gallery-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.produtos-gallery-stack a {
  display: block;
  line-height: 0;
  overflow: hidden;
}

.produtos-gallery-stack img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.produtos-gallery-stack a:hover img {
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .produtos-gallery-section {
    padding: 40px 20px 20px;
  }
  .produtos-gallery-inner {
    grid-template-columns: 1fr;
  }
  .produtos-gallery-stack {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .produtos-gallery-stack a {
    flex: 1 1 calc(50% - 5px);
  }
}
/* ── Hero ── */
.produtos-hero-wrap {
  background: #ffffff;
  padding-left: 55px;
  padding-right: 55px; /* espaços laterais = como na referência */
}

.produtos-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  line-height: 0;
}

.produtos-hero-inner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Carrossel ── */
.produtos-carousel-section {
  background: #ffffff;
  padding: 0 6vw 65px;
}

.produtos-carousel-title {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-accent);
  margin-bottom: 28px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.produtos-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 1100px;
  margin: 0 auto;
}

.produtos-carousel-track-outer {
  overflow: hidden;
  flex: 1;
}

.produtos-carousel-track {
  display: flex;
  gap: 10px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.produtos-carousel-item {
  flex: 0 0 calc(25% - 7.5px);
  overflow: hidden;
  line-height: 0;
}

.produtos-carousel-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.produtos-carousel-item:hover img {
  transform: scale(1.04);
}

/* Setas */
.carousel-btn {
  background: none;
  border: none;
  font-size: 40px;
  color: #aaa;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  transition: color 0.2s ease;
  flex-shrink: 0;
  user-select: none;
}

.carousel-btn:hover {
  color: var(--color-accent);
}

/* ── CTA Banner ── */
.produtos-cta-banner {
  padding: 0;
  overflow: hidden;
  line-height: 0;
}

.produtos-cta-banner img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.produtos-cta-banner a:hover img {
  transform: scale(1.02);
}

/* ── Responsivo ── */
@media (max-width: 900px) {
  .produtos-hero-wrap,
  .produtos-carousel-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .produtos-carousel-item {
    flex: 0 0 calc(50% - 5px);
  }
}
@media (max-width: 480px) {
  .produtos-carousel-item {
    flex: 0 0 100%;
  }
  .produtos-hero-wrap {
    padding: 20px 16px 35px;
  }
}
/* ── Escape do grid restrito do tema ── */
.lf-section,
.lf-promo {
  grid-column: 1/-1 !important;
  width: 100%;
  box-sizing: border-box;
}

/* ── Hero ── */
.lf-hero {
  overflow: hidden;
  line-height: 0;
}

/* ── Seções de conteúdo ── */
.lf-section {
  background: #ffffff;
  padding: 50px 40px;
  box-sizing: border-box;
}

.lf-row {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
}

.lf-col {
  flex: 1;
  min-width: 0;
  line-height: 0;
}

.lf-col-text {
  line-height: normal;
  padding: 0 40px;
}

/* ── Tipografia ── */
.lf-brand-title {
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgb(210, 168, 94);
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  margin: 0 0 8px 0;
}

.lf-text {
  font-size: 16px;
  font-weight: 400;
  color: rgb(0, 0, 0);
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  text-align: justify;
  margin: 0 0 8px 0;
}

/* ── Botão ── */
.lf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 11px 28px;
  background-color: rgb(210, 168, 94);
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  max-width: 220px;
}

.lf-btn:hover {
  background-color: rgb(189, 148, 73);
  color: #ffffff;
}

/* ── Banners de rodapé ── */
.lf-promo {
  padding: 0;
}

.lf-promo-row {
  display: flex;
}

.lf-promo-col {
  flex: 1;
  display: block;
  overflow: hidden;
  line-height: 0;
}

.lf-promo-col img {
  transition: transform 0.5s ease;
}

.lf-promo-col:hover img {
  transform: scale(1.03);
}

/* ── Responsivo ── */
@media (max-width: 768px) {
  .lf-section {
    padding: 40px 20px;
  }
  .lf-row {
    flex-direction: column;
  }
  .lf-col-text {
    padding: 30px 0 0;
  }
  .lf-promo-row {
    flex-direction: column;
  }
}
.vendedor-item {
  background: #ffffff;
  margin-bottom: 12px;
  padding: 15px;
  border: 1px solid #eaeaea;
  border-radius: 6px;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

.vendedor-item b {
  color: #000;
  font-weight: 600;
}

/* ── Escape do grid restrito do tema ── */
.pn-section,
.pn-promo {
  grid-column: 1/-1 !important;
  width: 100%;
  box-sizing: border-box;
}

/* ── Hero ── */
.pn-hero {
  overflow: hidden;
  line-height: 0;
}

/* ── Seções de conteúdo ── */
.pn-section {
  background: #ffffff;
  padding: 50px 40px;
  box-sizing: border-box;
}

.pn-row {
  display: flex;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.pn-row-history {
  align-items: flex-start;
}

.pn-col {
  flex: 1;
  min-width: 0;
  line-height: 0;
}

.pn-col-text {
  line-height: normal;
  padding: 0 40px;
}

.pn-history-col.pn-col-text {
  padding-left: 0;
  padding-right: 40px;
}

.pn-col-img {
  line-height: 0;
  margin: 16px 0;
}

/* ── Tipografia ── */
.pn-brand-title {
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgb(210, 168, 94);
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  margin: 0 0 8px 0;
}

.pn-subtitle {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgb(210, 168, 94);
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  margin: 0 0 12px 0;
}

.pn-text {
  font-size: 16px;
  font-weight: 400;
  color: white;
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  text-align: justify;
  margin: 0 0 8px 0;
}

/* ── Botão ── */
.pn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 11px 28px;
  background-color: rgb(210, 168, 94);
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  max-width: 220px;
}

.pn-btn:hover {
  background-color: rgb(189, 148, 73);
  color: #ffffff;
}

/* ── Coluna direita da história sem padding esquerdo ── */
.pn-history-col:not(.pn-col-text) {
  padding: 0 0 0 40px;
  line-height: normal;
}

/* ── Banners de rodapé ── */
.pn-promo {
  padding: 0;
}

.pn-promo-row {
  display: flex;
}

.pn-promo-col {
  flex: 1;
  display: block;
  overflow: hidden;
  line-height: 0;
}

.pn-promo-col img {
  transition: transform 0.5s ease;
}

.pn-promo-col:hover img {
  transform: scale(1.03);
}

/* ── Responsivo ── */
@media (max-width: 768px) {
  .pn-section {
    padding: 40px 20px;
  }
  .pn-row {
    flex-direction: column;
  }
  .pn-col-text {
    padding: 30px 0 0;
  }
  .pn-history-col.pn-col-text {
    padding: 30px 0 0;
  }
  .pn-history-col:not(.pn-col-text) {
    padding: 30px 0 0;
  }
  .pn-promo-row {
    flex-direction: column;
  }
  .pn-text {
    color: #000000;
  }
  .pn-section-history .pn-text {
    color: #ffffff;
  }
}
/* ── Escape do grid restrito do tema ── */
.ms-section,
.ms-promo {
  grid-column: 1/-1 !important;
  width: 100%;
  box-sizing: border-box;
}

/* ── Hero ── */
.ms-hero {
  overflow: hidden;
  line-height: 0;
}

/* ── Seções de conteúdo ── */
.ms-section {
  background: #ffffff;
  padding: 50px 40px;
}

.ms-row {
  display: flex;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.ms-col {
  flex: 1;
  min-width: 0;
  line-height: 0;
}

.ms-col-text {
  line-height: normal;
  padding: 0 40px;
}

/* ── Tipografia ── */
.ms-brand-title {
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgb(210, 168, 94);
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  margin: 0 0 8px 0;
}

.ms-text {
  font-size: 16px;
  font-weight: 400;
  color: rgb(0, 0, 0);
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  text-align: justify;
  margin: 0 0 8px 0;
}

/* ── Botão ── */
.ms-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 11px 28px;
  background-color: rgb(210, 168, 94);
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  max-width: 220px;
}

.ms-btn:hover {
  background-color: rgb(189, 148, 73);
  color: #ffffff;
}

/* ── Banners de rodapé ── */
.ms-promo {
  padding: 0;
}

.ms-promo-row {
  display: flex;
}

.ms-promo-col {
  flex: 1;
  display: block;
  overflow: hidden;
  line-height: 0;
}

.ms-promo-col img {
  transition: transform 0.5s ease;
}

.ms-promo-col:hover img {
  transform: scale(1.03);
}

/* ── Responsivo ── */
@media (max-width: 768px) {
  .ms-section {
    padding: 40px 20px;
  }
  .ms-row {
    flex-direction: column;
  }
  .ms-col-text {
    padding: 30px 0 0;
  }
  .ms-promo-row {
    flex-direction: column;
  }
}
.hero-title-main {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 74px;
  line-height: 1.1;
  margin-bottom: 15px;
  font-weight: 400;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.hero-subtitle-main {
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 45px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.5px;
}

.btn-hero-confira {
  background-color: #fdfbf5;
  color: var(--color-primary);
  padding: 18px 70px;
  font-size: 14px;
  letter-spacing: 12px;
  font-weight: 500;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: inline-block;
}

.btn-hero-confira:hover {
  background-color: #ffffff;
  color: var(--color-accent);
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 400px;
    align-items: flex-end;
  }
  .hero-section .container {
    justify-content: center;
    padding-bottom: 40px;
  }
  .hero-title-main {
    font-size: 42px;
  }
  .hero-subtitle-main {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .btn-hero-confira {
    padding: 14px 40px;
    font-size: 13px;
    letter-spacing: 6px;
  }
  section .col-6 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
/* ── Escape do grid restrito do tema ── */
.sr-section {
  grid-column: 1/-1 !important;
  width: 100%;
  box-sizing: border-box;
}

/* ── Seções ── */
.sr-section {
  background: rgb(254, 251, 247);
  padding: 50px 40px;
}

.sr-section-cream {
  background: rgb(254, 251, 247);
}

/* ── Layout: 2 colunas ── */
.sr-row {
  display: flex;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  gap: 40px;
}

.sr-row-form {
  align-items: flex-start;
}

.sr-col {
  flex: 1;
  min-width: 0;
}

.sr-col-text {
  padding: 0 20px;
}

.sr-col-img {
  line-height: 0;
}

.sr-col-7 {
  flex: 7;
  min-width: 0;
}

.sr-col-5 {
  flex: 5;
  min-width: 0;
}

/* ── Tipografia ── */
.sr-brand-title {
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgb(210, 168, 94);
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  margin: 0 0 16px 0;
}

.sr-section-title {
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgb(210, 168, 94);
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  text-align: center;
  margin: 0 0 32px 0;
}

.sr-text {
  font-size: 16px;
  font-weight: 400;
  color: rgb(0, 0, 0);
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  text-align: justify;
  margin: 0 0 12px 0;
}

/* ── Botão ── */
.sr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 11px 28px;
  background-color: rgb(210, 168, 94);
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.sr-btn:hover {
  background-color: rgb(189, 148, 73);
  color: #ffffff;
}

/* ── Lista de avisos ── */
.sr-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sr-list li {
  font-size: 16px;
  color: rgb(0, 0, 0);
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
}

/* ── Depoimentos ── */
.sr-depoimentos-wrap {
  max-width: 1280px;
  margin: 0 auto;
}

.sr-carousel-outer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sr-carousel-viewport {
  overflow: hidden;
  flex: 1;
}

.sr-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

.sr-dep-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sr-dep-img {
  width: 100%;
  display: block;
  object-fit: contain;
}

.sr-dep-text {
  font-size: 15px;
  color: rgb(0, 0, 0);
  font-family: "Open Sans", sans-serif;
  line-height: 1.7;
  margin: 0;
}

.sr-dep-author {
  font-size: 14px;
  color: rgb(0, 0, 0);
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  margin: 0;
}

.sr-arrow {
  background: none;
  border: none;
  font-size: 24px;
  color: #aaa;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
  transition: color 0.2s ease;
  line-height: 1;
}

.sr-arrow:hover {
  color: rgb(210, 168, 94);
}

.sr-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.sr-pagination button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease;
}

.sr-pagination button.active {
  background: rgb(210, 168, 94);
}

/* ── Card dourado do formulário ── */
.sr-form-card {
  background-color: rgb(210, 168, 94);
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.25) 0 3px 11px 0;
  padding: 32px 28px;
  box-sizing: border-box;
}

/* ── Formulário ── */
.sr-form-intro {
  font-size: 16px;
  color: rgb(0, 0, 0);
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  margin: 0 0 20px 0;
}

.sr-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sr-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sr-field label,
.sr-check-label {
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  color: rgb(0, 0, 0);
  font-weight: 600;
}

.sr-field input[type=text],
.sr-field input[type=email],
.sr-field input[type=tel],
.sr-field input[type=date] {
  padding: 10px 14px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  background: rgb(255, 255, 255);
  color: #333;
  box-sizing: border-box;
  width: 100%;
}

.sr-field-check {
  gap: 8px;
}

.sr-check-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  color: rgb(0, 0, 0);
  cursor: pointer;
}

.sr-field-submit {
  align-items: center;
  margin-top: 4px;
}

.sr-field-submit .sr-btn {
  background-color: rgb(0, 0, 0);
  color: #ffffff;
}

.sr-field-submit .sr-btn:hover {
  background-color: #333333;
  color: #ffffff;
}

/* ── FAQ Accordion ── */
.sr-faq-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.sr-faq-sub {
  font-size: 16px;
  color: #666;
  font-family: "Open Sans", sans-serif;
  text-align: center;
  margin: -20px 0 32px;
}

.sr-accordion {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #e0e0e0;
}

.sr-acc-item {
  border-bottom: 1px solid #e0e0e0;
}

.sr-acc-title {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-size: 18px;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  color: rgb(0, 0, 0);
  cursor: pointer;
  line-height: 1.4;
}

.sr-acc-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  color: rgb(0, 0, 0);
  transition: transform 0.3s ease;
}

.sr-acc-arrow svg {
  width: 20px;
  height: 20px;
  display: block;
}

.sr-acc-item.open .sr-acc-arrow {
  transform: rotate(180deg);
}

.sr-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  font-size: 15px;
  color: rgb(0, 0, 0);
  font-family: "Open Sans", sans-serif;
  line-height: 1.7;
  background: rgb(254, 251, 247);
}

.sr-acc-item.open .sr-acc-body {
  max-height: 800px;
}

.sr-acc-body-inner {
  padding: 16px;
}

.sr-acc-body p {
  margin: 0 0 8px 0;
}

.sr-acc-body ul {
  padding-left: 20px;
  margin: 0;
}

.sr-acc-body li {
  margin-bottom: 6px;
}

/* ── Responsivo ── */
@media (max-width: 768px) {
  .sr-section {
    padding: 40px 20px;
  }
  .sr-row {
    flex-direction: column;
    gap: 24px;
  }
  .sr-col-text {
    padding: 0;
  }
  .sr-row-form {
    flex-direction: column;
  }
  .sr-col-7, .sr-col-5 {
    flex: 1;
    width: 100%;
  }
  .sr-form-card {
    padding: 24px 18px;
  }
  .sr-dep-card {
    flex: 0 0 calc(100% - 10px);
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .sr-dep-card {
    flex: 0 0 calc(50% - 10px);
  }
}
/* ── Escape do grid restrito do tema ── */
.ct-section,
.ct-cta {
  grid-column: 1/-1 !important;
  width: 100%;
  box-sizing: border-box;
}

/* ── Hero ── */
.ct-hero {
  overflow: hidden;
  line-height: 0;
}

/* ── Seções ── */
.ct-section {
  background: #ffffff;
  padding: 50px 40px;
  box-sizing: border-box;
}

.ct-section-alt {
  background: #f6f5f2;
}

/* ── Nossas Lojas ── */
.ct-row {
  display: flex;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  gap: 40px;
}

.ct-col {
  flex: 1;
  min-width: 0;
}

.ct-col-lojas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.ct-lojas-icon {
  max-width: 220px;
  width: 100%;
  display: block;
}

.ct-lojas-img {
  width: 100%;
  display: block;
}

.ct-col-mapa {
  display: flex;
  justify-content: center;
}

/* ── Botão ── */
.ct-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 28px;
  background-color: rgb(210, 168, 94);
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.ct-btn:hover {
  background-color: rgb(189, 148, 73);
  color: #ffffff;
}

/* ── Canais de contato ── */
.ct-contato-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.ct-contato-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.ct-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.ct-contato-label {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000000;
  margin: 0;
}

.ct-contato-link {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  color: #666666;
  text-decoration: none;
}

.ct-contato-link:hover {
  color: rgb(210, 168, 94);
}

/* ── Formulário ── */
.ct-form-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.ct-form-title {
  font-family: "Open Sans", sans-serif;
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgb(210, 168, 94);
  text-align: center;
  margin: 0 0 32px 0;
}

.ct-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ct-form-row {
  display: flex;
  gap: 16px;
}

.ct-input,
.ct-textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 18px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  background: #f6f5f2;
  color: #333333;
}

.ct-input-full {
  width: 100%;
}

.ct-textarea {
  resize: vertical;
}

.ct-form-submit {
  text-align: center;
}

/* ── CTA ── */
.ct-cta {
  padding: 0;
  overflow: hidden;
  line-height: 0;
}

.ct-cta a:hover img {
  transform: scale(1.02);
  transition: transform 0.5s ease;
}

/* ── Responsivo ── */
@media (max-width: 768px) {
  .ct-section {
    padding: 40px 20px;
  }
  .ct-row {
    flex-direction: column;
  }
  .ct-contato-row {
    flex-direction: column;
    gap: 32px;
  }
  .ct-form-row {
    flex-direction: column;
  }
}