/* ========================================
   VARIÃƒÆ’Ã†â€™Ãƒâ€šÃ‚ÂVEIS CSS
======================================== */
:root {
  /* Primary - Verde Teal (moderno e sofisticado) */
  --color-primary: #118c97;
  --color-primary-dark: #0d6b74;
  --color-primary-light: #15a5b2;
  --color-primary-rgb: 17, 140, 151;

  /* Accent - Bordô/Vinho (sofisticado e marcante) */
  --color-accent: #77131f;
  --color-accent-light: #961827;
  --color-accent-dark: #5a0e17;
  --color-accent-rgb: 119, 19, 31;

  /* Neutral Palette - Tons suaves para contraste */
  --color-white: #ffffff;
  --color-off-white: #faf9f7;
  --color-black: #1a1a1a;
  --color-gray-50: #f8f7f5;
  --color-gray-100: #f0eeeb;
  --color-gray-200: #e2dfd9;
  --color-gray-300: #d1cdc5;
  --color-gray-400: #a19d95;
  --color-gray-500: #6b6860;
  --color-gray-600: #4a4740;
  --color-gray-700: #3a3733;
  --color-gray-800: #2a2826;
  --color-gray-900: #1a1918;

  /* Semantic Colors */
  --color-success: #118c97;
  --color-error: #77131f;
  --color-warning: #c4841d;
  --color-info: #118c97;

  --font-primary: "Open Sans", sans-serif;
  --font-heading: "Oswald", sans-serif;
  --font-button: "Roboto", sans-serif;

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.2);
  --shadow-accent: 0 8px 25px rgba(119, 19, 31, 0.3);
  --shadow-primary: 0 8px 25px rgba(17, 140, 151, 0.3);

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
}

/* ========================================
   RESET & BASE
======================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: var(--color-gray-800);
  background-color: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography - Global Font Rules (matching reference site lp-rodapes.versatilerevestimentos.com) */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

p,
span,
li,
label {
  font-family: "Open Sans", sans-serif;
}

a,
input,
textarea,
select {
  font-family: "Open Sans", sans-serif;
}

button,
.btn {
  font-family: "Roboto", sans-serif;
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus Styles for Accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-normal);
}

ul {
  list-style: none;
}

/* Selection Color */
::selection {
  background: var(--color-primary);
  color: var(--color-white);
}

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

/* ========================================
   BUTTONS
======================================== */
.btn {
  display: inline-block;
  padding: 13px 30px;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: var(--transition-normal);
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(119, 19, 31, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

.btn-secondary:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn-submit {
  width: 100%;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 13px;
  padding: 15px 32px;
}

.btn-submit:hover {
  background: var(--color-accent-dark);
  box-shadow: 0 8px 25px rgba(119, 19, 31, 0.35);
}

/* ========================================
   HEADER
======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}

.logo img {
  height: 50px;
  width: auto;
}

.nav-list {
  display: flex;
  gap: 40px;
}

.nav-list a {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-gray-700);
  letter-spacing: 0.5px;
  position: relative;
}

.nav-list a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition-normal);
}

.nav-list a:hover::after {
  width: 100%;
}

.nav-list a:hover {
  color: var(--color-primary);
}

.btn-header {
  background: var(--color-accent);
  color: var(--color-white);
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  letter-spacing: 0.5px;
}

.btn-header:hover {
  background: var(--color-accent-dark);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--color-gray-800);
  border-radius: 2px;
  transition: var(--transition-normal);
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(
    180deg,
    var(--color-primary-dark) 0%,
    var(--color-primary) 100%
  );
  padding-top: 150px;
  padding-bottom: 100px;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(119, 19, 31, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 40%
    );
  pointer-events: none;
}

.hero-bg-pattern::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(
    ellipse,
    rgba(255, 255, 255, 0.015) 0%,
    transparent 70%
  );
  transform: rotate(-15deg);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  animation: fadeInUp 1s ease forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
}

.hero-badge i {
  font-size: 12px;
  opacity: 0.8;
}

.hero-subtitle {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 3px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.hero-title {
  font-family: "Oswald", sans-serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* Mobile image between title and offer - hidden on desktop */
.hero-image-mobile {
  display: none;
}

.hero-image-mobile img {
  width: 100%;
  max-width: 500px;
  height: 350px;
  border-radius: var(--border-radius-lg);
  margin: 0 auto;
  object-fit: cover;
  object-position: center center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* Hero Offer Text */
.hero-offer {
  font-family: "Oswald", sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-white);
  margin-bottom: 15px;
}

.hero-offer .highlight {
  color: #f0d78c;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-cta-text {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 100;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Hero Features - Hidden by default, show if needed */
.hero-features {
  display: none;
  gap: 25px;
  margin-bottom: 35px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 500;
}

.hero-feature i {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--color-white);
  opacity: 0.9;
}

/* Hero Button - More prominent */
.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(
    180deg,
    var(--color-accent) 0%,
    var(--color-accent-dark) 100%
  );
  color: var(--color-white);
  padding: 20px 50px;
  border-radius: 6px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
}

.btn-hero:hover {
  background: linear-gradient(
    180deg,
    var(--color-accent-light) 0%,
    var(--color-accent) 100%
  );
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(119, 19, 31, 0.5);
}

.btn-hero i {
  transition: transform 0.3s ease;
}

.btn-hero:hover i {
  transform: translateX(5px);
}

/* Hero Image Container */
.hero-image-container {
  position: relative;
  animation: fadeInRight 1s ease 0.3s forwards;
  opacity: 0;
}

.hero-image-frame {
  position: relative;
  padding: 24px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.hero-image-frame img {
  width: 100%;
  height: 420px;
  border-radius: var(--border-radius-lg);
  object-fit: contain;
}

/* Hero Product Image - Elegant Crop Effect */
.hero-image-product {
  border-radius: var(--border-radius-xl);
  padding: 0;
  overflow: hidden;
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
}


.hero-image-product img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-product:hover img {
  transform: scale(1.03);
}

/* Mobile version of product image */
.hero-image-mobile img {
  object-fit: cover;
  object-position: center center;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Floating Card */
.hero-floating-card {
  position: absolute;
  bottom: -15px;
  left: -20px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--color-white);
  padding: 16px 22px;
  border-radius: var(--border-radius-md);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.floating-icon {
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-icon i {
  font-size: 18px;
  color: var(--color-white);
}

.floating-text {
  display: flex;
  flex-direction: column;
}

.floating-text strong {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-gray-900);
  line-height: 1;
}

.floating-text span {
  font-size: 11px;
  color: var(--color-gray-500);
  margin-top: 2px;
}

/* Hero Wave - Elegant Transition */
.hero-wave {
  display: none;
}

/* ========================================
   PAGAMENTO FACILITADO SECTION
======================================== */
.pagamento-facilitado {
  padding: 60px 0;
  background: var(--color-white);
  position: relative;
}

.pagamento-facilitado::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-gray-200);
}

.pagamento-header {
  text-align: center;
  margin-bottom: 50px;
}

.pagamento-title h2 {
  font-family: "Oswald", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-gray-900);
  line-height: 1.2;
}

.pagamento-title p {
  font-size: 17px;
  color: var(--color-gray-500);
  font-weight: 500;
}

.pagamento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 50px;
  list-style: none;
  padding: 0;
}

.pagamento-card {
  background: var(--color-gray-50);
  padding: 40px 30px;
  border-radius: var(--border-radius-md);
  text-align: center;
  transition: var(--transition-normal);
  border: none;
}

.pagamento-card:hover {
  background: var(--color-gray-100);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pagamento-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.pagamento-card:hover .pagamento-icon {
  background: var(--color-primary);
}

.pagamento-icon i {
  font-size: 28px;
  color: var(--color-primary);
  transition: var(--transition-normal);
}

.pagamento-card:hover .pagamento-icon i {
  color: var(--color-white);
}

.pagamento-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-gray-800);
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pagamento-destaque {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.pagamento-destaque-texto {
  font-size: 48px;
}

.pagamento-card p {
  font-size: 16px;
  color: var(--color-gray-600);
  line-height: 1.6;
  margin: 0;
}

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

/* Pagamento Facilitado Responsive */
@media (max-width: 768px) {
  .pagamento-facilitado {
    padding: 50px 0;
  }

  .pagamento-header {
    margin-bottom: 35px;
  }

  .pagamento-title h2 {
    font-size: 26px;
  }

  .pagamento-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
  }

  .pagamento-card {
    padding: 25px 15px;
  }

  .pagamento-destaque {
    font-size: 48px;
  }

  .pagamento-destaque-texto {
    font-size: 36px;
  }

  .pagamento-icon {
    width: 55px;
    height: 55px;
  }

  .pagamento-icon i {
    font-size: 22px;
  }

  .pagamento-card h3 {
    font-size: 13px;
  }

  .pagamento-card p {
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .pagamento-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pagamento-card {
    padding: 30px 25px;
  }

  .pagamento-destaque {
    font-size: 56px;
  }

  .pagamento-destaque-texto {
    font-size: 42px;
  }

  .pagamento-card h3 {
    font-size: 15px;
  }

  .pagamento-card p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .pagamento-title h2 {
    font-size: 24px;
  }

  .pagamento-card {
    padding: 28px 20px;
  }

  .pagamento-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 15px;
  }

  .pagamento-icon i {
    font-size: 22px;
  }

  .pagamento-destaque {
    font-size: 52px;
  }

  .pagamento-destaque-texto {
    font-size: 40px;
  }

  .pagamento-card h3 {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .pagamento-card p {
    font-size: 14px;
  }
}

/* ========================================
   VANTAGENS SECTION (hidden/backup)
======================================== */
.vantagens {
  padding: 60px 0;
  background: var(--color-white);
  position: relative;
  display: none;
}

.vantagens::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-gray-200);
}

.vantagens-header {
  text-align: center;
  margin-bottom: 50px;
}

.vantagens-image {
  display: none;
}

.vantagens-number {
  display: none;
}

.vantagens-title h2 {
  font-family: "Oswald", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-gray-900);
  line-height: 1.2;
}

.vantagens-title p {
  font-size: 17px;
  color: var(--color-gray-500);
  font-weight: 500;
}

.vantagens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.vantagem-card {
  background: var(--color-gray-50);
  padding: 30px 24px;
  border-radius: var(--border-radius-md);
  text-align: center;
  transition: var(--transition-normal);
  border: none;
}

.vantagem-card:hover {
  background: var(--color-gray-100);
}

.vantagem-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.vantagem-card:hover .vantagem-icon {
  background: var(--color-gray-800);
}

.vantagem-icon i {
  font-size: 20px;
  color: var(--color-gray-700);
  transition: var(--transition-normal);
}

.vantagem-card:hover .vantagem-icon i {
  color: var(--color-white);
}

.vantagem-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-gray-800);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.vantagem-card p {
  font-size: 16px;
  color: var(--color-gray-600);
  line-height: 1.6;
}

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

/* ========================================
   SOFISTICAÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢O SECTION
======================================== */
.sofisticacao {
  padding: 80px 0;
  background: var(--color-gray-50);
  overflow: hidden;
}

.sofisticacao-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Elegant Overlapping Images Grid */
.sofisticacao-images {
  position: relative;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sofisticacao-image {
  position: absolute;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sofisticacao-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* First Image - Main/Background */
.sofisticacao-image-1 {
  width: 320px;
  height: 380px;
  top: 0;
  left: 0;
  z-index: 1;
  border: 4px solid var(--color-white);
}

.sofisticacao-image-1:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
}

/* Second Image - Overlapping/Foreground */
.sofisticacao-image-2 {
  width: 280px;
  height: 340px;
  bottom: 0;
  right: 0;
  z-index: 2;
  border: 4px solid var(--color-white);
}

.sofisticacao-image-2:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
}

/* Decorative Element */
.sofisticacao-images-decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-light) 100%
  );
  border-radius: 50%;
  opacity: 0.1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.sofisticacao-images-decoration::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border: 3px dashed var(--color-primary);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.3;
}

.sofisticacao-text h2 {
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-gray-900);
  margin-bottom: 20px;
}

.sofisticacao-text h2 span {
  color: var(--color-primary);
  font-weight: 700;
}

.sofisticacao-text p {
  font-size: 17px;
  color: var(--color-gray-600);
  line-height: 1.8;
  margin-bottom: 30px;
}

/* ========================================
   CONDUÃƒÆ’Ã†â€™Ãƒâ€šÃ‚ÂTES SECTION
======================================== */
.conduites {
  padding: 60px 0;
  background: var(--color-white);
}

.conduites-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.conduites-text h2 {
  font-family: "Oswald", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--color-gray-900);
  margin-bottom: 0;
}

.conduites-text .highlight {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-gray-800);
  margin-bottom: 12px;
  display: block;
}

.conduites-text p {
  font-size: 17px;
  line-height: 1.4;
  margin-bottom: 25px;
  color: var(--color-gray-600);
}

.conduites .btn-secondary {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.conduites .btn-secondary:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

.conduites-image {
  position: relative;
}

/* ========================================
   GUARNI SECTION
======================================== */
.guarnicao {
  padding: 60px 0;
  background: var(--color-gray-50);
}

.guarnicao-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-badge {
  display: inline-block;
  background: transparent;
  color: var(--color-gray-500);
  padding: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
  position: relative;
}

.section-badge::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-gray-400);
  margin-top: 10px;
}

.guarnicao-header h2 {
  font-family: "Oswald", sans-serif;
  font-size: 34px;
  font-weight: 600;
  color: var(--color-gray-900);
  /* margin-bottom: 12px; */
}

.guarnicao-header p {
  font-size: 16px;
  color: var(--color-gray-500);
  max-width: 500px;
  margin: 0 auto;
}

.guarnicao-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.guarnicao-product {
  position: relative;
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
}

.product-image-wrapper img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.product-image-wrapper:hover img {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-image-wrapper:hover .product-overlay {
  opacity: 1;
}

.guarnicao-specs-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Specs Card */
.specs-card,
.colors-card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: var(--transition-normal);
}

.specs-card:hover,
.colors-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.specs-card-header,
.colors-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  background: var(--color-primary);
  color: var(--color-white);
}

.specs-card-header i,
.colors-card-header i {
  font-size: 18px;
  opacity: 0.7;
}

.specs-card-header h3,
.colors-card-header h3 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.5px;
}

/* Specs Table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table caption.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.specs-table thead {
  background: var(--color-gray-100);
}

.specs-table th {
  padding: 15px 20px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gray-600);
}

.specs-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--color-gray-200);
  font-size: 14px;
  color: var(--color-gray-700);
}

.specs-table td i {
  color: var(--color-primary);
  margin-right: 10px;
  width: 20px;
}

.specs-table tr:last-child td {
  border-bottom: none;
}

.specs-table tr:hover {
  background: var(--color-gray-100);
}

.spec-value {
  display: inline-block;
  background: var(--color-gray-100);
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
  color: var(--color-gray-800);
  margin: 2px;
}

.spec-value.highlight {
  background: var(--color-gray-800);
  color: var(--color-white);
}

/* Color Dots Inline (for specs table) */
.color-dot-inline {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: default;
}

.color-dot-inline:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.color-dot-inline:last-child {
  margin-right: 0;
}

/* Colors Grid Swatches */
.colors-grid-swatches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding: 25px;
}

.color-swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 15px;
  border-radius: var(--border-radius-md);
  background: var(--color-gray-100);
  cursor: pointer;
  transition: var(--transition-normal);
}

.color-swatch:hover {
  background: var(--color-gray-200);
  transform: scale(1.05);
}

.color-swatch .swatch {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.color-swatch .color-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-gray-700);
  text-align: center;
}

/* Colors Centered (for 2 items) */
.colors-grid-swatches.colors-centered {
  grid-template-columns: repeat(2, 1fr);
  max-width: 300px;
  margin: 0 auto;
}

/* ========================================
   MODELOS SECTION
======================================== */
.modelos {
  padding: 60px 0;
  background: var(--color-white);
}

.modelos-header {
  text-align: center;
  margin-bottom: 50px;
}

.modelos-header h2 {
  font-family: "Oswald", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--color-gray-900);
}

.modelos-header p {
  font-size: 16px;
  color: var(--color-gray-500);
  max-width: 600px;
  margin: 0 auto;
}

/* Products Showcase Grid */
.products-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 60px;
}

/* RodapÃ© Friso Destaque */
.rodape_friso {
  padding: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.rodape_friso h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.rodape_friso h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
}

.rodape_friso img {
  max-width: 100%;
  width: 800px;
  height: auto;
  border-radius: var(--border-radius-md);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.rodape_friso img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .rodape_friso {
    padding: 0 0 20px 0;
  }

  .rodape_friso h2 {
    padding: 0;
    text-align: center;
    font-size: 28px;
  }
  .rodape_friso {
    padding: 0;
    margin-bottom: 40px;
  }

  .rodape_friso h2 {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .rodape_friso img {
    width: 100%;
    border-radius: var(--border-radius-sm);
  }
}

/* Product Card */
.product-card {
  background: var(--color-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
  border: 1px solid var(--color-gray-200);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: var(--color-gray-300);
}

.product-card-image {
  position: relative;
  overflow: hidden;
  background: var(--color-gray-100);
  padding: 25px;
}

.product-card-image img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 5px 12px;
  border-radius: 2px;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-badge.new {
  background: var(--color-primary-light);
}

.product-badge.premium {
  background: var(--color-gray-600);
}

.product-card-content {
  padding: 22px;
}

.product-card-content h3 {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-gray-900);
  margin-bottom: 8px;
}

.product-card-content p {
  font-size: 15px;
  color: var(--color-gray-600);
  line-height: 1.6;
  margin-bottom: 15px;
  min-height: 40px;
}

/* Product Mini Specs Table */
.product-specs-mini {
  width: 100%;
  margin-bottom: 20px;
  border-collapse: collapse;
}

.product-specs-mini td {
  padding: 10px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--color-gray-200);
}

.product-specs-mini td:first-child {
  color: var(--color-gray-600);
}

.product-specs-mini td:first-child i {
  color: var(--color-primary);
  margin-right: 8px;
  width: 10px;
}

.product-specs-mini td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--color-gray-800);
}

.product-specs-mini tr:last-child td {
  border-bottom: none;
}

/* Specs Features in Product Table */
.product-specs-mini .specs-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.product-specs-mini .spec-feature {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
}

.product-specs-mini .spec-feature i {
  font-size: 9px;
  color: var(--color-white);
  margin-right: 0;
  width: auto;
}

.btn-product {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--color-accent);
  color: var(--color-white);
  text-align: center;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-normal);
}

.btn-product:hover {
  background: var(--color-accent-dark);
}

/* Product Colors Dots */
.product-colors {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-gray-200);
}

.color-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-normal);
}

.color-dot:hover {
  transform: scale(1.1);
}

/* Specs & Colors Section */
.specs-colors-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

/* Fancy Card Headers */
.card-header-fancy {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 22px;
  background: var(--color-gray-900);
  color: var(--color-white);
}

.icon-circle {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle i {
  font-size: 16px;
  color: var(--color-white);
  opacity: 0.8;
}

.card-header-fancy h3 {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 3px 0;
  letter-spacing: 0.5px;
}

.card-header-fancy p {
  font-size: 12px;
  opacity: 0.6;
  margin: 0;
}

/* Rodape Colors Card */
.rodape-colors-card,
.rodape-specs-card {
  background: var(--color-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--color-gray-200);
}

/* Colors Palette */
.colors-palette {
  padding: 20px;
}

.palette-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.palette-row:last-child {
  margin-bottom: 0;
}

.color-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 15px;
  background: var(--color-gray-100);
  border-radius: var(--border-radius-lg);
  cursor: pointer;
  transition: var(--transition-normal);
}

.color-item:hover {
  background: var(--color-gray-200);
  transform: translateY(-3px);
}

.color-preview {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: var(--transition-normal);
}

.color-item:hover .color-preview {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.color-item span {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-gray-700);
  text-align: center;
}

.color-item small {
  font-size: 10px;
  color: var(--color-gray-500);
  text-align: center;
  margin-top: -5px;
}

.color-item.featured {
  background: linear-gradient(
    135deg,
    var(--color-gray-100) 0%,
    var(--color-gray-200) 100%
  );
  border: 2px solid var(--color-primary);
}

/* Three Columns Palette */
.palette-row.three-cols {
  grid-template-columns: repeat(3, 1fr);
}

/* Colors by Model Section */
.colors-by-model {
  padding: 0 20px 20px;
}

.colors-model-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.colors-model-table thead {
  background: var(--color-gray-100);
}

.colors-model-table th {
  padding: 14px 18px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-gray-600);
}

.colors-model-table td {
  padding: 13px;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-gray-200);
  font-size: 14px;
}

.colors-model-table tr:last-child td {
  border-bottom: none;
}

.colors-model-table tr:hover td {
  background: var(--color-gray-100);
}

/* Color Tags */
.color-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  margin: 3px;
}

.color-tag::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.color-tag.white {
  background: #f5f5f5;
  color: var(--color-gray-700);
}

.color-tag.white::before {
  background: #ffffff;
  border: 1px solid #ddd;
}

.color-tag.black {
  background: #3a3a3a;
  color: #fff;
}

.color-tag.black::before {
  background: #2c2c2c;
}

.color-tag.gray {
  background: #e0e0e0;
  color: var(--color-gray-800);
}

.color-tag.gray::before {
  background: #6b6b6b;
}

/* Full Specs Table */
.specs-table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.specs-table-full {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
}

.specs-table-full thead {
  background: var(--color-gray-100);
}

.specs-table-full th {
  padding: 16px 20px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gray-600);
  border-bottom: 2px solid var(--color-gray-200);
}

.specs-table-full td {
  padding: 18px 20px;
  font-size: 14px;
  color: var(--color-gray-700);
  border-bottom: 1px solid var(--color-gray-200);
}

.specs-table-full td strong {
  color: var(--color-gray-900);
  font-size: 16px;
}

.specs-table-full tr:hover {
  background: var(--color-gray-100);
}

.specs-table-full tr:last-child td {
  border-bottom: none;
}

/* Tags */
.tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--color-gray-200);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-gray-700);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tag.popular {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-dark) 100%
  );
  color: var(--color-white);
}

.tag.premium {
  background: var(--color-gray-700);
  color: var(--color-white);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 25px;
  background: var(--color-gray-100);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.feature-item i {
  font-size: 24px;
  color: var(--color-primary);
}

.feature-item span {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-gray-700);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Modelos CTA */
.modelos-cta {
  text-align: center;
}

.btn-large {
  padding: 18px 40px;
  font-size: 16px;
}

.btn-large i {
  margin-right: 10px;
}

/* ========================================
   GARANTIA SECTION
======================================== */
.garantia {
  padding: 60px 0;
  background: var(--color-gray-900);
  color: var(--color-white);
}

.garantia-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.garantia-badge {
  text-align: center;
  padding: 21px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.garantia-number {
  font-size: 26px;
  font-weight: 600;
  display: block;
  line-height: 30px;
}

.garantia-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  opacity: 0.8;
}

.garantia-info h2 {
  font-family: "Oswald", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.4;
}

/* ========================================
   DEPOIMENTOS SECTION
======================================== */
.depoimentos {
  padding: 100px 0;
  background: var(--color-gray-100);
  text-align: center;
}

.depoimentos h2 {
  font-family: "Oswald", sans-serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--color-gray-900);
  margin-bottom: 30px;
}

/* Video Testimonials Wrapper */
.video-testimonials-wrapper {
  position: relative;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.video-testimonials {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

.video-item {
  position: relative;
  flex: 0 0 calc(33.333% - 14px);
  margin: 0 7px;
  height: 320px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.video-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-item .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-item .play-btn i {
  font-size: 22px;
  color: var(--color-accent);
  margin-left: 4px;
}

.video-item:hover .play-btn {
  background: var(--color-accent);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-item:hover .play-btn i {
  color: var(--color-white);
}

/* Video Carousel Navigation */
.video-carousel-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

.video-nav-btn {
  width: 45px;
  height: 45px;
  border: 2px solid var(--color-accent);
  background: var(--color-white);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.video-nav-btn:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: scale(1.1);
}

.video-nav-btn i {
  font-size: 16px;
  color: var(--color-accent);
  transition: var(--transition-normal);
}

.video-nav-btn:hover i {
  color: var(--color-white);
}

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  cursor: pointer;
}

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 400px;
  background: #000;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  z-index: 10001;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--color-white);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
  z-index: 10002;
}

.video-modal-close i {
  font-size: 20px;
  color: var(--color-white);
}

.video-modal-close:hover {
  background: var(--color-white);
  transform: scale(1.1);
}

.video-modal-close:hover i {
  color: #000;
}

.video-modal-player {
  position: relative;
  width: 100%;
  padding-bottom: 177.78%; /* 9:16 aspect ratio for vertical videos (shorts) */
  height: 0;
  background: #000;
}

.video-modal-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Cursor style for video items */
.video-item {
  cursor: pointer;
}

.video-testimonials.grabbing {
  cursor: grabbing;
}

.video-testimonials.grabbing .video-item {
  cursor: grabbing;
}

.rating-header {
  margin-bottom: 20px;
}

.rating-image {
  margin-bottom: 20px;
}

.rating-image img {
  max-width: 100px;
  margin: 0 auto;
  border-radius: var(--border-radius-md);
}

.rating-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

.rating-score .score {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary);
}

.rating-score .label {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-gray-700);
}

.rating-header p {
  font-size: 14px;
  color: var(--color-gray-600);
}

.depoimentos-subtitle {
  font-size: 18px;
  color: var(--color-gray-600);
  margin-bottom: 50px;
  line-height: 25px;
}

/* Carousel Container */
/* Feedback Slider - New Implementation */
.feedback-slider {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  width: 100%;
}

.feedback-slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.feedback-slide {
  flex: 0 0 33.333%;
  padding: 0 10px;
  box-sizing: border-box;
}

.depoimento-card {
  background: var(--color-white);
  padding: 25px;
  border-radius: 16px;
  text-align: left;
  transition: box-shadow var(--transition-normal),
    transform var(--transition-normal);
  height: 280px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.depoimento-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

/* Header with avatar, name, date, google icon */
.depoimento-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 18px;
  flex-shrink: 0;
}

.author-avatar-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--color-gray-900);
}

.author-date {
  font-size: 12px;
  color: var(--color-gray-500);
}

.google-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Rating row with stars and verified icon */
.review-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.stars {
  display: flex;
  gap: 2px;
}

.stars i {
  color: #fbbc04;
  font-size: 16px;
}

.verified-icon {
  color: #1a73e8;
  font-size: 14px;
}

/* Review text */
.depoimento-text {
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  font-size: 14px;
  color: var(--color-gray-700);
  line-height: 1.6;
  margin: 0;
}

.feedback-slider-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.feedback-nav-btn {
  width: 50px;
  height: 50px;
  border: 2px solid var(--color-accent);
  background: var(--color-white);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

.feedback-nav-btn:hover {
  background: var(--color-accent);
}

.feedback-nav-btn i {
  font-size: 16px;
  color: var(--color-accent);
  transition: var(--transition-normal);
}

.feedback-nav-btn:hover i {
  color: var(--color-white);
}

/* Depoimentos section animation */
.depoimentos.animate-in .depoimentos-carousel {
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}

/* Old styles removed - using new depoimento card styles */

.trustindex {
  font-size: 11px;
  color: var(--color-gray-500);
  display: none; /* Hidden in new layout */
}

.old-author-date {
  font-size: 12px;
  color: var(--color-gray-500);
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border: 2px solid var(--color-accent);
  background: var(--color-white);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

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

.carousel-btn i {
  font-size: 16px;
  color: var(--color-accent);
  transition: var(--transition-normal);
}

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

/* ========================================
   INSTALAÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢O SECTION
======================================== */
.instalacao {
  padding: 60px 0;
  background: var(--color-white);
}

.instalacao-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.instalacao-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
}

/* InstalaÃƒÂ§ÃƒÂ£o Video */
.instalacao-video {
  position: relative;
}

.video-wrapper {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  cursor: pointer;
}

.video-wrapper .video-thumbnail {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.video-wrapper:hover .video-thumbnail {
  transform: scale(1.03);
}

.video-wrapper iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  border-radius: var(--border-radius-lg);
}

.play-btn-large {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: var(--color-accent);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
  box-shadow: 0 8px 30px rgba(119, 19, 31, 0.4);
}

.play-btn-large i {
  font-size: 32px;
  color: var(--color-white);
  margin-left: 5px;
}

.play-btn-large:hover {
  background: var(--color-accent-dark);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 12px 40px rgba(119, 19, 31, 0.5);
}

@media (max-width: 768px) {
  .play-btn-large {
    width: 70px;
    height: 70px;
  }

  .play-btn-large i {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .play-btn-large {
    width: 60px;
    height: 60px;
  }

  .play-btn-large i {
    font-size: 22px;
  }
}

.instalacao-text h2 {
  font-family: "Oswald", sans-serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--color-gray-900);
  margin-bottom: 25px;
}

.instalacao-text p {
  font-size: 16px;
  color: var(--color-gray-600);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ========================================
   OFERTAS SECTION
======================================== */
.ofertas {
  padding: 20px 0 40px 0;
  background: var(--color-white);
  text-align: center;
}

.ofertas h2 {
  font-family: "Oswald", sans-serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-gray-900);
  line-height: 41px;
}

.ofertas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.oferta-card {
  background: var(--color-gray-50);
  padding: 35px 25px;
  border-radius: var(--border-radius-md);
  transition: var(--transition-normal);
  border: 1px solid var(--color-gray-200);
}

.oferta-card:hover {
  border-color: var(--color-gray-300);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.oferta-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: var(--color-gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oferta-icon i {
  font-size: 22px;
  color: var(--color-gray-700);
}

.oferta-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-gray-900);
}

.oferta-card p {
  font-size: 16px;
  line-height: 22px;
  color: var(--color-gray-600);
}

.ofertas-cta .btn-primary {
  background: var(--color-accent);
}

.ofertas-cta .btn-primary:hover {
  background: var(--color-accent-dark);
}

/* ========================================
   FAQ SECTION
======================================== */
.faq {
  padding: 40px 0;
  background: var(--color-gray-100);
}

.faq h2 {
  font-family: "Oswald", sans-serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--color-gray-900);
  text-align: center;
}

.faq-subtitle {
  text-align: center;
  font-size: 16px;
  color: var(--color-gray-600);
  margin-bottom: 50px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  margin-bottom: 15px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 25px 30px;
  background: var(--color-white);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-gray-800);
  text-align: left;
  transition: var(--transition-normal);
}

.faq-question:hover {
  background: var(--color-gray-100);
}

.faq-question i {
  transition: var(--transition-normal);
  color: var(--color-primary);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 30px 25px;
  font-size: 15px;
  color: var(--color-gray-600);
  line-height: 1.7;
}

/* ========================================
   ORÇAMENTO SECTION
======================================== */
.orcamento {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.orcamento-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(135deg, rgba(17, 140, 151, 0.92) 0%, rgba(13, 107, 116, 0.95) 100%),
    url('https://lp-rodapes.versatilerevestimentos.com/wp-content/uploads/2024/01/img-banner-princiapal.webp');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.orcamento-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to right,
    rgba(17, 140, 151, 0.85) 0%,
    rgba(17, 140, 151, 0.7) 50%,
    rgba(17, 140, 151, 0.5) 100%
  );
}

.orcamento .container {
  position: relative;
  z-index: 2;
}

.orcamento-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.orcamento-text {
  color: var(--color-white);
}

.orcamento-headline {
  font-family: "Oswald", sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.orcamento-slogan {
  font-family: "Oswald", sans-serif;
  font-size: 35px;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.3;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.orcamento-cta-text {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.orcamento-form-container {
  background: var(--color-white);
  padding: 40px 35px;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-header {
  text-align: left;
  margin-bottom: 25px;
}

.form-title {
  font-family: "Oswald", sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--color-gray-900);
  line-height: 29px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-highlight {
  color: var(--color-accent);
  font-weight: 700;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray-800);
  margin-bottom: 8px;
}

.form-group label .required {
  color: var(--color-accent);
  font-weight: 600;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-gray-300);
  border-radius: 4px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: var(--color-gray-800);
  transition: var(--transition-normal);
  background: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(17, 140, 151, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* Honeypot fields - hidden from users */
.form-hp {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

/* Field error styles */
.field-error {
  display: none;
  color: var(--color-accent);
  font-size: 12px;
  margin-top: 6px;
  padding-left: 4px;
  animation: fieldErrorFadeIn 0.3s ease;
}

@keyframes fieldErrorFadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-group input.field-invalid,
.form-group textarea.field-invalid {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(119, 19, 31, 0.2);
  animation: fieldShake 0.4s ease;
}

@keyframes fieldShake {
  0%,
  100% {
    transform: translateX(0);
  }
  20%,
  60% {
    transform: translateX(-4px);
  }
  40%,
  80% {
    transform: translateX(4px);
  }
}

.form-group input.field-valid,
.form-group textarea.field-valid {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(17, 140, 151, 0.15);
}

/* Button states */
.btn-submit {
  position: relative;
  overflow: hidden;
}

.btn-submit .btn-loading {
  display: none;
}

.btn-submit.btn-loading-state .btn-text,
.btn-submit.btn-loading-state .btn-icon {
  display: none;
}

.btn-submit.btn-loading-state .btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-submit.btn-success {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%) !important;
  border-color: var(--color-primary) !important;
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Shake animation for errors */
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-5px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(5px);
  }
}

.shake {
  animation: shake 0.6s ease-in-out;
}

.form-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  font-size: 12px;
  color: var(--color-gray-500);
}

.form-privacy i {
  font-size: 11px;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit i {
  font-size: 14px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-gray-500);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ========================================
   FOOTER
======================================== */
.footer {
  padding: 40px 0;
  background: var(--color-gray-900);
  color: var(--color-gray-400);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-address p {
  font-size: 13px;
  line-height: 1.7;
}

.footer-copyright p {
  font-size: 12px;
}

address.footer-address {
  color: #fff;
}

/* ========================================
   WHATSAPP BUTTON
======================================== */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  animation: pulse 2s infinite;
}

.whatsapp-btn i {
  font-size: 32px;
  color: var(--color-white);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

/* ========================================
   BACK TO TOP
======================================== */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--color-accent);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--color-accent-dark);
  transform: translateY(-5px);
}

.back-to-top i {
  font-size: 20px;
  color: var(--color-white);
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ========================================
   RESPONSIVE - TABLET (1024px)
======================================== */
@media (max-width: 1024px) {
  /* Container */
  .container {
    padding: 0 24px;
  }

  /* Sections Spacing */
  section {
    padding: 70px 0;
  }

  /* Hero */
  .hero {
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-image-container {
    order: 2;
    max-width: 480px;
    margin: 0 auto;
  }

  .hero-title {
    font-size: 42px;
    line-height: 1.2;
  }

  .hero-offer {
    font-size: 20px;
  }

  .hero-features {
    justify-content: center;
  }

  .hero-floating-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -25px;
  }

  @keyframes floatCard {
    0%,
    100% {
      transform: translateX(-50%) translateY(0);
    }
    50% {
      transform: translateX(-50%) translateY(-8px);
    }
  }

  /* Grids */
  .vantagens-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .sofisticacao-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .sofisticacao-images {
    height: 420px;
    max-width: 500px;
    margin: 0 auto;
  }

  .sofisticacao-image-1 {
    width: 280px;
    height: 340px;
  }

  .sofisticacao-image-2 {
    width: 240px;
    height: 300px;
  }

  .conduites-content,
  .instalacao-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .orcamento-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .guarnicao-showcase {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .products-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .specs-colors-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .palette-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feedback-slide {
    flex: 0 0 50%;
    padding: 0 8px;
  }

  .depoimento-card {
    padding: 25px;
  }

  .ofertas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Typography */
  .vantagens-title h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .sofisticacao-text h2,
  .conduites-text h2,
  .guarnicao-header h2,
  .modelos-header h2 {
    font-size: 30px;
  }
}

/* ========================================
   RESPONSIVE - MOBILE LARGE (768px)
======================================== */
@media (max-width: 768px) {
  /* Base */
  html {
    font-size: 15px;
  }

  .container {
    padding: 0 20px;
  }

  /* Sections Spacing */
  section {
    padding: 50px 0;
  }

  /* Navigation */
  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--color-white);
    padding: 30px 20px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .nav-list a {
    font-size: 16px;
    font-weight: 500;
  }

  .btn-header {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  /* Hero */
  .hero {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  /* Hide badge on mobile */
  .hero-badge {
    display: none;
  }

  /* Hide desktop image container on mobile */
  .hero-image-container {
    display: none;
  }

  /* Show mobile image between title and description */
  .hero-image-mobile {
    display: block;
    margin: 20px 0;
    text-align: center;
  }

  .hero-image-mobile img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center center;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0;
  }

  .hero-subtitle {
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
  }

  .hero-title {
    font-family: "Oswald", sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
    text-transform: uppercase;
  }

  .hero-offer {
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 12px;
  }

.hero-offer .highlight {
    color: #f0d78c;
    font-weight: 700;
  }

  .hero-cta-text {
    font-family: "Oswald", sans-serif;
    font-size: 14px;
    font-weight: 100;
    margin-bottom: 25px;
    letter-spacing: 1px;
  }

  .hero-features {
    display: none;
  }

  .btn-hero {
    display: inline-flex;
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 18px 35px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 6px;
  }

  .hero-image-frame {
    padding: 16px;
  }

.hero-image-frame img {
    height: 280px;
  }

  .hero-image-product img {
    height: 320px;
    object-position: center center;
  }

  /* Vantagens */
  .vantagens {
    padding: 60px 0 50px;
  }

  .vantagens-header {
    margin-bottom: 35px;
  }

  .vantagens-title h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .vantagens-title p {
    font-size: 15px;
  }

  .vantagens-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .vantagem-card {
    padding: 24px 20px;
  }

  .vantagem-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 14px;
  }

  .vantagem-icon i {
    font-size: 18px;
  }

  .vantagem-card h3 {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .vantagem-card p {
    font-size: 13px;
  }

  /* SofisticaÃ§Ã£o - Mobile Layout Reorder */
  .sofisticacao {
    padding: 50px 0;
  }

  .sofisticacao-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .sofisticacao-text {
    display: contents; /* Allow children to participate in parent flex */
  }

  .sofisticacao-text h2 {
    order: 1;
    text-align: center;
    font-size: 26px;
    line-height: 1.25;
    margin-bottom: 0;
  }

  .sofisticacao-images {
    order: 2;
    height: auto;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: relative;
    padding: 0 15px;
  }

  .sofisticacao-image-1,
  .sofisticacao-image-2 {
    position: relative;
    transform: none !important;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }

  .sofisticacao-image-1 {
    width: 75%;
    height: auto;
    z-index: 1;
  }

  .sofisticacao-image-2 {
    width: 80%;
    height: auto;
    margin-top: -60px;
    margin-left: auto;
    z-index: 2;
  }

  .sofisticacao-image-1 img,
  .sofisticacao-image-2 img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .sofisticacao-image-2 img {
    height: 220px !important;
  }

  .sofisticacao-images:hover .sofisticacao-image-1,
  .sofisticacao-images:hover .sofisticacao-image-2 {
    transform: none !important;
  }

  .sofisticacao-images-decoration {
    display: none;
  }

  .sofisticacao-text p {
    order: 3;
    text-align: center;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
  }

  .sofisticacao-text .btn {
    order: 4;
    align-self: center;
  }

  /* ConduÃ­tes */
  .conduites-text h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .conduites-text p {
    font-size: 15px;
  }

  /* GuarniÃ§Ã£o */
  .guarnicao-header h2 {
    font-size: 26px;
  }

  .guarnicao-header p {
    font-size: 14px;
  }

  .section-badge {
    font-size: 14px;
    letter-spacing: 2px;
  }

  /* Modelos */
  .modelos-header h2 {
    font-size: 26px;
  }

  .modelos-header p {
    font-size: 14px;
  }

  .products-showcase {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-card-image {
    padding: 20px;
  }

  .product-card-image img {
    height: 160px;
  }

  .product-card-content {
    padding: 20px;
  }

  .product-card-content h3 {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .product-card-content p {
    font-size: 13px;
    min-height: auto;
    margin-bottom: 14px;
  }

  /* Garantia */
  .garantia {
    padding: 50px 0;
  }

  .garantia-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .garantia-badge {
    width: 120px;
    height: 120px;
    padding: 18px;
  }

  .garantia-number {
    font-size: 24px;
  }

  .garantia-text {
    font-size: 14px;
  }

  .garantia-info h2 {
    font-size: 24px;
    line-height: 1.4;
  }

  /* Depoimentos */
  .depoimentos {
    padding: 60px 0;
  }

  .depoimentos h2 {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .video-testimonials-wrapper {
    max-width: 100%;
    margin-bottom: 40px;
    padding: 0 10px;
  }

  .video-item {
    flex: 0 0 calc(33.333% - 10px);
    margin: 0 5px;
    height: 280px;
  }

  .video-item .play-btn {
    width: 50px;
    height: 50px;
  }

  .video-item .play-btn i {
    font-size: 18px;
  }

  .video-nav-btn {
    width: 40px;
    height: 40px;
  }

  .video-nav-btn i {
    font-size: 14px;
  }

  .video-modal-content {
    max-width: 350px;
  }

  .video-modal-close {
    top: -45px;
    width: 38px;
    height: 38px;
  }

  .video-modal-close i {
    font-size: 16px;
  }

  .feedback-slide {
    flex: 0 0 100%;
    padding: 0 5px;
  }

  .depoimento-card {
    padding: 24px;
  }

  .depoimento-text {
    font-size: 14px;
    min-height: auto;
    margin-bottom: 18px;
  }

  .feedback-nav-btn {
    width: 44px;
    height: 44px;
  }

  .feedback-nav-btn i {
    font-size: 14px;
  }

  /* InstalaÃ§Ã£o */
  .instalacao {
    padding: 60px 0;
  }

  .instalacao-text h2 {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .instalacao-text p {
    font-size: 15px;
    margin-bottom: 16px;
  }

  .play-btn-large {
    width: 70px;
    height: 70px;
  }

  .play-btn-large i {
    font-size: 26px;
  }

  /* Ofertas */
  .ofertas h2 {
    font-size: 26px;
    line-height: 1.35;
  }

  .ofertas-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .oferta-card {
    padding: 28px 22px;
  }

  .oferta-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
  }

  .oferta-card h3 {
    font-size: 14px;
  }

  .oferta-card p {
    font-size: 13px;
  }

  /* FAQ */
  .faq {
    padding: 50px 0;
  }

  .faq h2 {
    font-size: 28px;
  }

  .faq-subtitle {
    font-size: 14px;
    margin-bottom: 35px;
  }

  .faq-question {
    padding: 20px 22px;
    font-size: 15px;
  }

  .faq-answer p {
    padding: 0 22px 22px;
    font-size: 14px;
  }

  /* Orçamento */
  .orcamento {
    padding: 50px 0;
    min-height: auto;
  }

  .orcamento-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .orcamento-headline {
    font-size: 38px;
    margin-bottom: 20px;
  }

  .orcamento-slogan {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .orcamento-cta-text {
    font-size: 14px;
    letter-spacing: 1.5px;
  }

  .orcamento-form-container {
    padding: 28px 24px;
  }

  .form-title {
    font-size: 18px;
    text-align: center;
  }

  .form-group input,
  .form-group textarea {
    padding: 14px;
    font-size: 15px;
  }

  /* Footer */
  .footer {
    padding: 35px 0;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-address p {
    font-size: 13px;
  }

  .footer-copyright p {
    font-size: 11px;
  }

  /* Tables */
  .specs-table th,
  .specs-table td,
  .specs-table-full th,
  .specs-table-full td {
    padding: 12px 14px;
    font-size: 13px;
  }

  /* Colors */
  .colors-grid-swatches {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 18px;
  }

  .palette-row,
  .palette-row.three-cols {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 18px;
  }
}

/* ========================================
   RESPONSIVE - MOBILE SMALL (480px)
======================================== */
@media (max-width: 480px) {
  /* Base */
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 16px;
  }

  /* Sections */
  section {
    padding: 40px 0;
  }

  /* Hero */
  .hero {
    padding-top: 110px;
    padding-bottom: 50px;
  }

  .hero-subtitle {
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 8px;
  }

  .hero-title {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 0;
  }

.hero-image-mobile img {
    max-width: 100%;
    height: 280px;
    object-fit: contain;
    /* object-position: 55% 70%; */
  }

  .hero-offer {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 10px;
  }

  .hero-cta-text {
    font-size: 16px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
  }

  .btn-hero {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    padding: 16px 30px;
    font-size: 13px;
  }

  .hero-image-frame {
    padding: 12px;
  }

.hero-image-frame img {
    height: 240px;
  }

  .hero-image-product img {
    height: 280px;
    object-position: center center;
  }

  .hero-floating-card {
    padding: 12px 16px;
    gap: 10px;
  }

  .floating-icon {
    width: 36px;
    height: 36px;
  }

  .floating-icon i {
    font-size: 16px;
  }

  .floating-text strong {
    font-size: 15px;
  }

  .floating-text span {
    font-size: 10px;
  }

  /* Typography - All Sections */
  .vantagens-title h2 {
    font-size: 24px;
  }

  .vantagens-title p {
    font-size: 16px;
  }

  /* Sofisticacao - Mobile Layout Reorder */
  .sofisticacao-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .sofisticacao-text {
    display: contents;
  }

  .sofisticacao-text h2 {
    order: 1;
    text-align: center;
  }

  .sofisticacao-images {
    order: 2;
    height: auto;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: relative;
    padding: 0;
  }

  .sofisticacao-text p {
    order: 3;
    text-align: center;
  }

  .sofisticacao-text .btn {
    order: 4;
    align-self: center;
  }

  .sofisticacao-image-1,
  .sofisticacao-image-2 {
    position: relative;
    transform: none !important;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }

  .sofisticacao-image-1 {
    width: 70%;
    height: auto;
    z-index: 1;
  }

  .sofisticacao-image-2 {
    width: 75%;
    height: auto;
    margin-top: -50px;
    margin-left: auto;
    z-index: 2;
  }

  .sofisticacao-image-1 img,
  .sofisticacao-image-2 img {
    width: 100%;
    object-fit: cover;
  }

  .sofisticacao-images-decoration {
    display: none;
  }

  .sofisticacao-text h2,
  .conduites-text h2,
  .instalacao-text h2 {
    font-size: 31px;
    line-height: 36px;
    margin-bottom: 8px;
  }

  .sofisticacao-text p,
  .conduites-text p,
  .instalacao-text p {
    font-size: 16px;
  }

  .guarnicao-header h2,
  .modelos-header h2 {
    font-size: 30px;
    line-height: 34px;
    margin-bottom: 8px;
  }

  .guarnicao-header p,
  .modelos-header p {
    font-size: 16px;
    line-height: 22px;
  }

  .depoimentos h2 {
    font-size: 24px;
  }

  .faq h2 {
    font-size: 25px;
  }

  .ofertas h2 {
    font-size: 22px;
    line-height: 1.35;
  }

  .orcamento-headline {
    font-size: 31px;
    margin-bottom: 15px;
  }

  .orcamento-slogan {
    font-size: 23px;
    margin-bottom: 16px;
  }

  /* Cards */
  .vantagem-card {
    padding: 20px 16px;
  }

  .vantagem-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 12px;
  }

  .vantagem-icon i {
    font-size: 16px;
  }

  .vantagem-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .vantagem-card p {
    font-size: 16px;
    line-height: 1.5;
  }

  /* Products */
  .product-card-image {
    padding: 16px;
  }

  .product-card-image img {
    height: 140px;
  }

  .product-card-content {
    padding: 16px;
  }

  .product-card-content h3 {
    font-size: 19px;
  }

  .product-card-content p {
    font-size: 16px;
  }

  .product-specs-mini td {
    /* padding: 8px 0; */
    font-size: 13px;
  }

  .btn-product {
    padding: 11px;
    font-size: 16px;
  }

  /* Garantia */
  .garantia {
    padding: 40px 0;
  }

  .garantia-badge {
    width: 150px;
    height: 150px;
    padding: 16px;
  }

  .garantia-number {
    font-size: 30px;
    line-height: 1.2;
  }

  .garantia-info h2 {
    font-size: 20px;
  }

  /* Videos */
  .video-testimonials-wrapper {
    padding: 0 5px;
    margin-bottom: 30px;
  }

  .video-item {
    flex: 0 0 calc(33.333% - 6px);
    margin: 0 3px;
    height: 180px;
  }

  .video-item .play-btn {
    width: 36px;
    height: 36px;
  }

  .video-item .play-btn i {
    font-size: 12px;
    margin-left: 2px;
  }

  .video-nav-btn {
    width: 34px;
    height: 34px;
  }

  .video-nav-btn i {
    font-size: 11px;
  }

  .video-carousel-nav {
    margin-top: 20px;
    gap: 10px;
  }

  .video-modal {
    padding: 15px;
  }

  .video-modal-content {
    max-width: 300px;
  }

  .video-modal-close {
    top: -40px;
    width: 32px;
    height: 32px;
  }

  .video-modal-close i {
    font-size: 14px;
  }

  /* Depoimentos */
  .feedback-slide {
    flex: 0 0 100%;
    padding: 0 5px;
  }

  .depoimento-card {
    padding: 20px;
  }

  .stars i {
    font-size: 14px;
  }

  .depoimento-text {
    font-size: 13px;
    line-height: 1.6;
  }

  .author-name {
    font-size: 14px;
  }

  .feedback-nav-btn {
    width: 40px;
    height: 40px;
  }

  .feedback-nav-btn i {
    font-size: 12px;
  }

  .feedback-slider-nav {
    gap: 10px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .carousel-btn i {
    font-size: 14px;
  }

  /* InstalaÃ§Ã£o Video */
  .play-btn-large {
    width: 56px;
    height: 56px;
  }

  .play-btn-large i {
    font-size: 20px;
    margin-left: 3px;
  }

  /* Ofertas */
  .oferta-card {
    padding: 24px 18px;
  }

  .oferta-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
  }

  .oferta-icon i {
    font-size: 18px;
  }

  .oferta-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .oferta-card p {
    font-size: 16px;
  }

  /* FAQ */
  .faq-subtitle {
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 21px;
  }

  .faq-question {
    padding: 18px;
    font-size: 15px;
    line-height: 22px;
  }

  .faq-answer p {
    padding: 0 18px 18px;
    font-size: 15px;
  }

  /* Orçamento */
  .orcamento-form-container {
    padding: 24px 18px;
  }

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

  .form-title {
    font-size: 16px;
  }

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

  .form-group label {
    font-size: 13px;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 14px;
  }

  .btn-submit {
    padding: 14px;
    font-size: 12px;
  }

  .form-privacy {
    font-size: 11px;
  }

  /* Specs & Colors */
  .specs-card-header,
  .colors-card-header,
  .card-header-fancy {
    padding: 16px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .specs-card-header h3,
  .colors-card-header h3,
  .card-header-fancy h3 {
    font-size: 13px;
  }

  .colors-grid-swatches {
    grid-template-columns: repeat(2, 1fr);
    padding: 14px;
    gap: 10px;
  }

  .color-swatch {
    padding: 10px 8px;
  }

  .color-swatch .swatch {
    width: 36px;
    height: 36px;
  }

  .color-swatch .color-name {
    font-size: 11px;
  }

  .palette-row,
  .palette-row.three-cols {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .color-item {
    padding: 12px 8px;
  }

  .color-preview {
    width: 40px;
    height: 40px;
  }

  .color-item span {
    font-size: 11px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    padding: 14px;
    gap: 10px;
  }

  .feature-item i {
    font-size: 18px;
  }

  .feature-item span {
    font-size: 9px;
  }

  /* Tables */
  .specs-table th,
  .specs-table td,
  .specs-table-full th,
  .specs-table-full td {
    padding: 10px;
    font-size: 12px;
  }

  .colors-model-table th,
  .colors-model-table td {
    padding: 10px;
    font-size: 11px;
  }

  .color-tag {
    padding: 3px 6px;
    font-size: 9px;
    margin: 2px;
  }

  .color-tag::before {
    width: 8px;
    height: 8px;
  }

  /* Buttons */
  .btn {
    padding: 15px 24px;
    font-size: 16px;
  }

  .btn-large {
    padding: 14px 10px;
    font-size: 13px;
  }

  .btn-large i {
    margin-right: 0px;
  }

  /* Fixed Buttons */
  .whatsapp-btn {
    width: 50px;
    height: 50px;
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-btn i {
    font-size: 24px;
  }

  .back-to-top {
    bottom: 76px;
    right: 16px;
    width: 40px;
    height: 40px;
  }

  .back-to-top i {
    font-size: 16px;
  }
}
