:root {
  --green-primary: #3aaa35;
  --green-dark: #2d8a29;
  --green-light: #e8f5e9;
  --green-mid: #5ab855;
  --dark: #1a1a1a;
  --dark-soft: #2c2c2c;
  --gray: #6b7280;
  --gray-light: #f5f5f5;
  --white: #ffffff;
  --beige: #d4a574;
  --border: #e5e7eb;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 40px rgba(58,170,53,0.15);
  --radius: 12px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green-primary);
  border-radius: 50%;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-title span {
  color: var(--green-primary);
}

.section-desc {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 560px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-primary);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(58,170,53,0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--green-primary);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--green-primary);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-outline:hover {
  background: var(--green-primary);
  color: var(--white);
  transform: translateY(-2px);
}

body > header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.products-header,
.why-header {
  position: static;
  background: none;
  border: none;
  box-shadow: none;
  z-index: auto;
}

body > header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-primary);
  letter-spacing: -0.02em;
}

.logo-text span {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body > header nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

body > header nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}

body > header nav a:hover {
  color: var(--green-primary);
  background: var(--green-light);
}

.footer-col {
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green-primary);
  color: var(--white);
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
}

.btn-call:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition);
}

.btn-wa:hover {
  background: #1fb855;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
}

.hamburger:focus-visible {
  outline: 2px solid var(--green-primary);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 2px solid var(--green-primary);
  padding: 16px 24px;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
}

.mobile-menu nav a {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
}

.mobile-menu nav a:hover {
  color: var(--green-primary);
  background: var(--green-light);
}

.mobile-menu .mobile-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

#hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 50%, #f9fafb 100%);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(58,170,53,0.08) 0%, transparent 70%);
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(58,170,53,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(58,170,53,0.35);
}

.hero-badge svg {
  width: 14px;
  height: 14px;
  fill: var(--white);
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero-title span {
  color: var(--green-primary);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--green-primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.hero-visual {
  position: relative;
}

.hero-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
}

.hero-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.hero-float-card {
  position: absolute;
  bottom: -20px;
  left: -28px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-float-icon {
  width: 44px;
  height: 44px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-float-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--green-primary);
}

.hero-float-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dark);
}

.hero-float-text span {
  font-size: 0.78rem;
  color: var(--gray);
}

.hero-float-badge {
  position: absolute;
  top: 20px;
  right: -16px;
  background: var(--green-primary);
  color: var(--white);
  border-radius: 12px;
  padding: 12px 16px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(58,170,53,0.4);
}

.hero-float-badge strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}

.hero-float-badge span {
  font-size: 0.7rem;
  font-weight: 700;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

#about {
  padding: 100px 0;
  background: var(--white);
}

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

.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-img-grid .img-main {
  grid-column: 1 / -1;
  border-radius: 20px;
  overflow: hidden;
  height: 260px;
}

.about-img-grid .img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-img-grid .img-main:hover img {
  transform: scale(1.04);
}

.about-img-grid .img-small {
  border-radius: 16px;
  overflow: hidden;
  height: 180px;
}

.about-img-grid .img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-img-grid .img-small:hover img {
  transform: scale(1.06);
}

.about-content .section-desc {
  margin-bottom: 28px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: 12px;
  background: var(--gray-light);
  transition: var(--transition);
}

.feature-item:hover {
  background: var(--green-light);
}

.feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item:hover .feature-icon {
  background: var(--white);
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--green-primary);
}

.feature-text strong {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 2px;
}

.feature-text p {
  font-size: 0.85rem;
  color: var(--gray);
}

#products {
  padding: 100px 0;
  background: var(--gray-light);
}

.products-header {
  text-align: center;
  margin-bottom: 60px;
}

.products-header .section-desc {
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-primary);
}

.product-img {
  height: 240px;
  overflow: hidden;
  background: #0f0f0f;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-body {
  padding: 24px;
}

.product-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.product-body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.product-body p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.spec-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gray-light);
  color: var(--dark-soft);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 8px;
}

.product-meta {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.product-meta-line {
  font-size: 0.84rem;
  color: var(--dark-soft);
  margin-bottom: 4px;
  line-height: 1.5;
}

.product-meta-tags {
  font-size: 0.78rem;
  color: var(--gray);
  font-style: italic;
  margin-top: 6px;
}

.spec-chip::before {
  content: '✓';
  color: var(--green-primary);
  font-weight: 800;
}

#why {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #0d2b0d 100%);
  position: relative;
  overflow: hidden;
}

#why::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233aaa35' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
}

.why-inner {
  position: relative;
  z-index: 1;
}

.why-header {
  text-align: center;
  margin-bottom: 64px;
}

.why-header .section-title {
  color: var(--white);
}

.why-header .section-desc {
  color: rgba(255,255,255,0.65);
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.why-card:hover {
  background: rgba(58,170,53,0.12);
  border-color: var(--green-primary);
  transform: translateY(-6px);
}

.why-icon {
  width: 64px;
  height: 64px;
  background: rgba(58,170,53,0.15);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--green-primary);
}

.why-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--green-primary);
  transition: var(--transition);
}

.why-card:hover .why-icon svg {
  fill: var(--white);
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

#contact {
  padding: 100px 0;
  background: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-info .section-desc {
  margin-bottom: 40px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: 16px;
  background: var(--gray-light);
  transition: var(--transition);
  border: 1px solid transparent;
}

.contact-card:hover {
  border-color: var(--green-primary);
  background: var(--green-light);
}

.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--green-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.contact-card-text strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.contact-card-text span {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}

.cta-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn-green-full {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-primary);
  color: var(--white);
  padding: 15px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-green-full:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(58,170,53,0.35);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: var(--white);
  padding: 15px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-whatsapp:hover {
  background: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

.map-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  height: 100%;
  min-height: 420px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: none;
  display: block;
}

footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 28px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-text strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
}

.footer-logo-text span {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  display: block;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255,255,255,0.7);
}

.social-btn:hover {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: var(--white);
  transform: translateY(-2px);
}

.social-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--green-primary);
}

.footer-col ul li span {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
}

.footer-bottom a {
  color: var(--green-primary);
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.call-fixed {
  position: fixed;
  bottom: 104px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.call-float-btn {
  width: 58px;
  height: 58px;
  background: var(--green-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(58,170,53,0.5);
  transition: var(--transition);
}

.call-float-btn:hover {
  background: var(--green-dark);
  transform: scale(1.1);
}

.call-float-btn svg {
  width: 26px;
  height: 26px;
  fill: var(--white);
}

.call-tooltip {
  background: var(--dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(4px);
  transition: var(--transition);
  pointer-events: none;
}

.call-fixed:hover .call-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-fixed {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.wa-float-btn {
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: var(--transition);
  position: relative;
}

.wa-float-btn:hover {
  background: #1fb855;
  transform: scale(1.1);
}

.wa-float-btn svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.wa-pulse {
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 14px;
  background: #ff4444;
  border-radius: 50%;
  border: 2px solid var(--white);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.wa-tooltip {
  background: var(--dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(4px);
  transition: var(--transition);
  pointer-events: none;
}

.whatsapp-fixed:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body > header nav, .header-actions .btn-call, .header-actions .btn-wa {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 0 60px;
  }
  .hero-visual {
    order: -1;
  }
  .hero-img-wrap img {
    height: 320px;
  }
  .hero-float-card {
    left: 12px;
    bottom: -16px;
  }
  .hero-float-badge {
    right: 12px;
    top: 12px;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.7rem;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .hero-float-card {
    display: none;
  }
  .hero-float-badge {
    display: none;
  }
  .whatsapp-fixed {
    bottom: 16px;
    right: 16px;
  }
  .call-fixed {
    bottom: 88px;
    right: 16px;
  }
}
