.elementor-13 .elementor-element.elementor-element-eafeed0{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-13 .elementor-element.elementor-element-88caf22{width:100%;max-width:100%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}body.elementor-page-13{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}/* Start custom CSS */:root {
  /* Brand Colors */
  --color-primary: #991a1a;
  --color-primary-dark: #7a1313;
  --color-primary-light: #c94040;
  --color-primary-xlight: #fdf0f0;

  /* Brand Green */
  --color-brand-green: #617331;
  --texture-noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");

  /* Neutrals */
  --color-white: #ffffff;
  --color-cream: #faf7f3;
  --color-beige: #f0ece5;
  --color-gray-100: #f8f8f8;
  --color-gray-200: #e8e8e8;
  --color-gray-400: #9f9f9f;
  --color-gray-600: #666666;
  --color-dark: #1a1a1a;
  --color-dark-soft: #2d2d2d;

  /* Accent */
  --color-whatsapp: #25d366;
  --color-whatsapp-dark: #1aab53;
  --color-gold: #c9a84c;

  /* Typography */
  --font-primary: 'Urbanist', sans-serif;
  --font-display: 'Playfair Display', serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.14);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.18);
  --shadow-red: 0 8px 32px rgba(153, 26, 26, 0.35);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-smooth: 400ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Container */
  --container-max: 1200px;
  --container-pad: 1.5rem;
}

/* ============= RESET & BASE ============= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--color-dark);
  background-color: var(--color-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-base);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-primary);
}

/* ============= UTILITY CLASSES ============= */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section {
  padding: 60px 0;
}

.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: var(--space-4);
}

.mt-5 {
  margin-top: var(--space-5);
}

.mt-6 {
  margin-top: var(--space-6);
}

.bg-cream {
  background-color: var(--color-cream);
}

.bg-red {
  background-color: var(--color-primary);
}

/* ============= TYPOGRAPHY ============= */
.section-eyebrow {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.section-title {
  font-family: var(--font-primary);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-dark);
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-gray-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header {
  margin-bottom: var(--space-12);
}

/* ============= BUTTONS ============= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-smooth);
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: var(--text-lg);
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  box-shadow: 0 12px 40px rgba(153, 26, 26, 0.45);
  color: var(--color-white);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.8);
}

.btn-outline-white:hover {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-dark);
  border-color: var(--color-dark);
}

.btn-outline-dark:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

.btn-white:hover {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

/* ============= HEADER / NAVBAR ============= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.navbar {
  padding: var(--space-4) 0;
  transition: var(--transition-smooth);
}

.site-header.scrolled .navbar {
  background: rgba(26, 26, 26, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  padding: var(--space-3) 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.navbar-logo img {
  height: 60px;
  width: auto;
  /* filter: brightness(0) invert(1); */
  transition: var(--transition-base);
}

.site-header.scrolled .navbar-logo img {
  height: 50px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav-link {
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--color-white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav-social {
  display: flex;
  gap: var(--space-3);
}

.nav-social a {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-lg);
  transition: var(--transition-base);
}

.nav-social a:hover {
  color: var(--color-white);
  transform: scale(1.15);
}

.nav-cta {
  font-size: var(--text-xs);
  padding: 0.6rem 1.25rem;
  letter-spacing: 0.06em;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============= HERO SECTION ============= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 750px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(26, 26, 26, 0.85) 0%,
      rgba(153, 26, 26, 0.65) 60%,
      rgba(26, 26, 26, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 100px var(--container-pad) 0;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  color: var(--color-white);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.05;
  margin-bottom: var(--space-6);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-highlight {
  color: #ff8080;
  display: inline-block;
  position: relative;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-8);
  max-width: 620px;
  line-height: 1.5;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  align-items: center;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-trust span i {
  color: var(--color-gold);
  font-size: 1rem;
}

.hero-trust span i {
  color: #ffd700;
}

/* Hero Controls */
.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  color: var(--color-white);
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  font-size: var(--text-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.hero-prev {
  left: var(--space-6);
}

.hero-next {
  right: var(--space-6);
}

.hero-prev:hover,
.hero-next:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-50%) scale(1.05);
}

.hero-dots {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: var(--space-2);
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.4);
  transition: var(--transition-smooth);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.hero-dot.active {
  background: var(--color-white);
  width: 30px;
}

/* Hero animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.7s ease both;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.45s;
}

.delay-4 {
  animation-delay: 0.6s;
}

/* ============= TRUST BAR ============= */
.trust-bar {
  background-color: var(--color-primary);
  background-image: var(--texture-noise);
  padding: 60px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-white);
}

.trust-icon {
  font-size: var(--text-2xl);
  color: var(--color-white);
  flex-shrink: 0;
}

.trust-item div {
  display: flex;
  flex-direction: column;
}

.trust-item strong {
  font-size: var(--text-base);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-white);
}

.trust-item span {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.3;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

/* ============= ABOUT SECTION ============= */
.about-section {
  background: var(--color-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-image {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  transition: transform 0.6s ease;
}

.about-image-wrapper:hover .about-image {
  transform: scale(1.03);
}

.about-badge-float {
  position: absolute;
  bottom: var(--space-6);
  right: var(--space-6);
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-4) var(--space-5);
  text-align: center;
  box-shadow: var(--shadow-red);
  backdrop-filter: blur(10px);
}

.badge-number {
  display: block;
  font-size: var(--text-4xl);
  font-weight: 900;
  line-height: 1;
}

.badge-text {
  font-size: var(--text-sm);
  font-weight: 600;
  opacity: 0.9;
  line-height: 1.3;
}

.about-lead {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: var(--space-4);
  line-height: 1.6;
}

.about-text {
  font-size: var(--text-base);
  color: var(--color-gray-600);
  margin-bottom: var(--space-4);
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: var(--space-8);
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-gray-200);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: var(--text-4xl);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gray-400);
  font-weight: 600;
  margin-top: var(--space-1);
  display: block;
}

/* ============= DIFFERENTIALS ============= */
.differentials-section {
  background: var(--color-cream);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.diff-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition-smooth);
  border: 1px solid var(--color-gray-200);
}

.diff-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(97, 115, 49, 0.3);
}

.diff-icon {
  width: 72px;
  height: 72px;
  background: rgba(97, 115, 49, 0.1);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  font-size: var(--text-2xl);
  color: var(--color-brand-green);
  transition: var(--transition-smooth);
}

.diff-card:hover .diff-icon {
  background: var(--color-brand-green);
  color: var(--color-white);
  transform: scale(1.1);
}

.diff-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--space-3);
}

.diff-text {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
  line-height: 1.7;
}

/* ============= PRODUCTS SECTION ============= */
.products-section {
  background: var(--color-white);
}

.product-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-gray-600);
  background: var(--color-gray-100);
  border: 2px solid transparent;
  transition: var(--transition-smooth);
}

.filter-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.filter-btn.active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.product-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-200);
  transition: var(--transition-smooth);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-xlight);
}

.product-card.hidden {
  display: none;
}

.product-image-wrap {
  position: relative;
  background: var(--color-gray-100);
  overflow: hidden;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}

.product-image {
  max-width: 85%;
  max-height: 80%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image {
  transform: scale(1.07);
}

.product-badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background: var(--color-primary);
  color: white;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-badge.bestseller {
  background: var(--color-gold);
}

.product-body {
  padding: var(--space-5) var(--space-5) var(--space-6);
}

.product-name {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-1);
}

.product-weight {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-3);
}

.product-desc {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: var(--transition-base);
}

.product-link:hover {
  border-bottom-color: var(--color-primary);
  color: var(--color-primary-dark);
  gap: var(--space-3);
}

/* ============= HOW IT WORKS ============= */
.how-section {
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
}

.how-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.steps-grid {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  justify-content: center;
}

.step-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  flex: 1;
  max-width: 300px;
  transition: var(--transition-smooth);
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-6px);
}

.step-number {
  font-size: var(--text-5xl);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
  margin-bottom: var(--space-3);
}

.step-icon {
  font-size: var(--text-3xl);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-4);
}

.step-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-3);
}

.step-desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.step-arrow {
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--text-2xl);
  flex-shrink: 0;
}

/* ============= GALLERY SECTION ============= */
.gallery-section {
  background: var(--color-white);
  padding-bottom: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: var(--space-3);
  margin-top: var(--space-10);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
}

.gallery-item-large {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(153, 26, 26, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  color: var(--color-white);
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
  background: rgba(153, 26, 26, 0.5);
  opacity: 1;
}

.gallery-section .text-center {
  padding: var(--space-8) 0 var(--space-16);
}

/* ============= TESTIMONIALS ============= */
.testimonials-section {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  background: var(--color-white);
}

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-3);
}

.stars {
  color: #ffd700;
  font-size: var(--text-xl);
  display: flex;
  gap: 2px;
}

.rating-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-sm);
  font-weight: 600;
}

.testimonials-slider {
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: var(--space-6);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  flex: 0 0 calc(33.333% - var(--space-4));
  min-width: calc(33.333% - var(--space-4));
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.testimonial-quote {
  color: var(--color-primary-light);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
  opacity: 0.7;
}

.testimonial-text {
  color: var(--color-gray-600);
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--color-white);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  color: var(--color-dark);
  font-size: var(--text-base);
  font-weight: 700;
}

.author-role {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-gray-400);
  margin-bottom: 4px;
}

.testimonial-stars {
  color: #ffd700;
  font-size: var(--text-sm);
  display: flex;
  gap: 2px;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.test-prev,
.test-next {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  font-size: var(--text-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.test-prev:hover,
.test-next:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: scale(1.1);
}

.testimonial-dots {
  display: flex;
  gap: var(--space-2);
  align-items: center;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.3);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.testimonial-dot.active {
  background: var(--color-white);
  width: 24px;
}

/* ============= FRANCHISE SECTION ============= */
.franchise-section {
  background: var(--color-cream);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.franchise-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(153, 26, 26, 0.05) 0%, transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(153, 26, 26, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.franchise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 2;
}

.franchise-text {
  font-size: var(--text-base);
  color: var(--color-gray-600);
  line-height: 1.8;
  margin-bottom: var(--space-6);
}

.franchise-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.franchise-benefits li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  color: var(--color-dark);
  font-size: var(--text-base);
  font-weight: 500;
}

.franchise-benefits li i {
  color: var(--color-primary-light);
  margin-top: 3px;
  flex-shrink: 0;
}

.franchise-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

/* ============= CONTACT CTA ============= */
.contact-cta {
  background: var(--color-cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.contact-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.contact-option-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.contact-option-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-option-card i {
  font-size: var(--text-3xl);
  flex-shrink: 0;
}

.contact-option-card.whatsapp i {
  color: var(--color-whatsapp);
}

.contact-option-card.phone i {
  color: var(--color-primary);
}

.contact-option-card.map i {
  color: #4285f4;
}

.contact-option-card.email i {
  color: var(--color-dark-soft);
}

.contact-option-card:hover.whatsapp {
  border-color: var(--color-whatsapp);
}

.contact-option-card:hover.phone {
  border-color: var(--color-primary);
}

.contact-option-card:hover.map {
  border-color: #4285f4;
}

.contact-option-card:hover.email {
  border-color: var(--color-dark-soft);
}

.contact-option-card strong {
  display: block;
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-dark);
}

.contact-option-card span {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
}

/* ============= FOOTER ============= */
.site-footer {
  background: var(--color-dark);
  padding: 60px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  height: 60px;
  width: auto;
  /* filter: brightness(0) invert(1); */
  margin-bottom: var(--space-4);
}

.footer-tagline {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-6);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-base);
  transition: var(--transition-smooth);
}

.footer-social a:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.1);
}

.footer-heading {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-5);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-base);
}

.footer-links a:hover {
  color: var(--color-white);
  padding-left: var(--space-2);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer-contact-item i {
  color: var(--color-primary-light);
  font-size: var(--text-base);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item span,
.footer-contact-item a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  transition: var(--transition-base);
}

.footer-contact-item a:hover {
  color: var(--color-white);
}

.footer-bottom {
  padding: 20px 0 60px;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
}

/* ============= FLOATING ELEMENTS ============= */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 25px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: var(--color-whatsapp);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  transition: var(--transition-smooth);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: var(--color-whatsapp-dark);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.65);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--color-dark);
  color: var(--color-white);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-md);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-base);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* WhatsApp pulse animation */
@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float {
  animation: waPulse 2.5s infinite;
}

.whatsapp-float:hover {
  animation: none;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 25px;
  z-index: 998;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--color-dark);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-base);
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-primary);
  transform: translateY(-3px);
}

/* ============= REVEAL ANIMATIONS ============= */
@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-card {
  opacity: 0;
  transform: translateY(40px);
}

.reveal-card.in-view {
  animation: revealUp 0.6s ease forwards;
}

.reveal-card:nth-child(1) {
  animation-delay: 0.0s;
}

.reveal-card:nth-child(2) {
  animation-delay: 0.1s;
}

.reveal-card:nth-child(3) {
  animation-delay: 0.2s;
}

.reveal-card:nth-child(4) {
  animation-delay: 0.3s;
}

.reveal-card:nth-child(5) {
  animation-delay: 0.4s;
}

.reveal-card:nth-child(6) {
  animation-delay: 0.5s;
}

/* ============= RESPONSIVE ============= */

/* Large Laptops / Tablets */
@media (max-width: 1100px) {
  .about-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: var(--space-10);
  }

  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
}

/* Tablets */
@media (max-width: 900px) {
  :root {
    --container-pad: 1.25rem;
  }

  .section {
    padding: var(--space-16) 0;
  }

  /* Nav */
  .nav-menu,
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    padding: var(--space-6);
    gap: var(--space-5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .about-grid,
  .franchise-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .about-image {
    height: 380px;
  }

  .franchise-image {
    height: 350px;
  }

  .about-image-col {
    order: 2;
  }

  .about-content-col {
    order: 1;
    text-align: center;
  }

  .about-lead,
  .about-text,
  .franchise-text {
    text-align: center;
  }

  .trust-bar-inner {
    gap: var(--space-5);
    justify-content: center;
  }

  .trust-divider {
    display: none;
  }

  .steps-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .step-arrow {
    display: none;
  }

  .step-card {
    max-width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item-large {
    grid-row: auto;
  }

  .testimonial-card {
    flex: 0 0 calc(50% - var(--space-3));
    min-width: calc(50% - var(--space-3));
  }

  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  :root {
    --container-pad: 1rem;
  }

  .section {
    padding: var(--space-12) 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: var(--text-base);
  }

  .hero-badge {
    font-size: var(--text-xs);
  }

  .hero-btns {
    flex-direction: column;
    gap: var(--space-3);
  }

  .btn-lg {
    padding: 0.9rem 1rem;
    font-size: var(--text-base);
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .hero-trust {
    flex-direction: column;
    gap: var(--space-3);
    align-items: center;
  }

  .hero-prev,
  .hero-next {
    display: none;
    /* Hide arrows on mobile to prevent overlapping, swipe/dots are enough */
  }

  .about-image {
    height: 300px;
  }

  .about-stats {
    flex-wrap: wrap;
    gap: var(--space-5);
  }

  .diff-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-image-wrap {
    height: 200px;
    /* Reduz altura da caixa da imagem no mobile para melhor proporção */
  }

  .contact-text,
  .contact-options {
    text-align: center;
  }

  .contact-options {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .testimonial-card {
    flex: 0 0 calc(100% - 0px);
    min-width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer-bottom .container {
    justify-content: center;
    text-align: center;
  }

  .hero-content {
    text-align: center;
    padding-top: 80px;
  }

  .hero-btns {
    align-items: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-badge {
    margin: 0 auto var(--space-4);
  }
}

/* Very small screens */
@media (max-width: 380px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .about-badge-float {
    bottom: var(--space-4);
    right: var(--space-4);
    padding: var(--space-3);
  }

  .badge-number {
    font-size: var(--text-3xl);
  }
}

/* ============= PRINT STYLES ============= */
@media print {

  .site-header,
  .hero-prev,
  .hero-next,
  .whatsapp-float,
  .back-to-top {
    display: none !important;
  }
}/* End custom CSS */