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

:root {
  --dark: #111827;
  --dark-2: #1f2937;
  --dark-3: #374151;
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --green-wa: #25d366;
  --text-muted: #9ca3af;
  --text-light: #6b7280;
  --border: #e5e7eb;
  --bg-light: #f9fafb;
}

body {
  font-family: 'Barlow', Arial, sans-serif;
  color: var(--dark);
  line-height: 1.6;
}

/* ── Header ── */
header {
  background-color: var(--dark-2);
  padding: 0.85rem 10%;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 100px;
  height: 58px;
  overflow: hidden;
  border-radius: 8px;
  flex-shrink: 0;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  gap: 5px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background-color: white;
  border-radius: 2px;
  transition: 0.3s;
}

#nav-toggle { display: none; }

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

nav a:hover { color: white; }

.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--blue);
  color: white !important;
  padding: 0.45rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s !important;
}

.nav-call:hover {
  background-color: var(--blue-light) !important;
  color: white !important;
}

/* ── Hero ── */
.hero {
  background-color: var(--dark-2);
  background-image: radial-gradient(ellipse at 70% 50%, rgba(37,99,235,0.12) 0%, transparent 70%);
  padding: 5rem 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  min-height: 520px;
}

.hero-content { flex: 1; }

.hero-badge {
  display: inline-block;
  background: rgba(37,99,235,0.2);
  color: #93c5fd;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  border: 1px solid rgba(37,99,235,0.3);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  color: white;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero h1 span {
  color: var(--blue-light);
}

.hero > .hero-content > p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 440px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.stat strong {
  display: block;
  color: white;
  font-size: 1.5rem;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-weight: 700;
}

.stat span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

.hero-image {
  flex: 1;
  height: 420px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

/* ── Buttons ── */
.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.65rem 1.75rem;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.button-primary {
  background-color: var(--blue);
  color: white;
}
.button-primary:hover { background-color: #1d4ed8; }

.button-outline {
  background-color: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}
.button-outline:hover {
  border-color: white;
  background-color: rgba(255,255,255,0.08);
}

.button-white {
  background-color: white;
  color: var(--blue);
  font-weight: 600;
}
.button-white:hover { background-color: #f0f4ff; }

.button-whatsapp {
  background-color: var(--green-wa);
  color: white;
  font-weight: 600;
}
.button-whatsapp:hover { background-color: #1ebe5d; }

/* ── Products ── */
.products-section {
  padding: 5rem 10%;
  background-color: var(--bg-light);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.section-header h2 {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.section-sub {
  color: var(--text-light);
  font-size: 1rem;
}

.products-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background-color: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
  border-color: transparent;
}

.product-image {
  height: 220px;
  overflow: hidden;
}

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

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

.product-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-info h3 {
  color: var(--dark);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.product-info p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
  flex: 1;
}

.product-cta {
  display: inline-block;
  margin-top: 1rem;
  color: var(--blue);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.product-cta:hover { color: #1d4ed8; }

/* ── Contact Info ── */
.contact-info {
  background-color: var(--dark-2);
  padding: 3rem 10%;
}

.contact-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: white;
}

.contact-icon {
  font-size: 1.4rem;
  margin-top: 2px;
}

.contact-item strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.contact-item p, .contact-item a {
  color: white;
  font-size: 0.95rem;
  text-decoration: none;
}

.contact-item a:hover { color: var(--blue-light); }

/* ── CTA Section ── */
.cta-section {
  padding: 3rem 10%;
  background-color: var(--bg-light);
}

.cta-container {
  background: linear-gradient(135deg, #1e40af 0%, var(--blue) 100%);
  color: white;
  padding: 3rem 3.5rem;
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cta-text h3 {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cta-text p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  max-width: 400px;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--green-wa);
  color: white;
  border-radius: 50%;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 22px rgba(37,211,102,0.5);
}

.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: var(--dark-2);
  color: white;
  font-size: 0.8rem;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  font-family: 'Barlow', Arial, sans-serif;
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ── Footer ── */
footer {
  background-color: var(--dark);
  padding: 1.75rem 10%;
}

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

footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

footer strong { color: white; }

.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: white; }

.footer-links span { color: var(--dark-3); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--dark-2);
    flex-direction: column;
    padding: 1rem;
    text-align: center;
    z-index: 1000;
    border-top: 1px solid rgba(255,255,255,0.07);
  }

  #nav-toggle:checked ~ nav { display: flex; }

  .nav-call { justify-content: center; }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 3rem 5%;
    min-height: auto;
  }

  .hero h1 { font-size: 2.5rem; }
  .hero > .hero-content > p { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }

  .hero-image {
    height: 280px;
    width: 100%;
  }

  .products-cards {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    padding-left: 2rem;
  }

  .cta-container {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .cta-buttons { justify-content: center; }
  .cta-text p { max-width: 100%; }

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

  header { padding: 0.85rem 5%; }
  .hero { padding: 3rem 5%; }
  .products-section { padding: 3rem 5%; }
  .cta-section { padding: 2rem 5%; }
  footer { padding: 1.5rem 5%; }
  .contact-info { padding: 2rem 5%; }
}

@media (max-width: 480px) {
  .products-cards { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { flex-direction: column; gap: 0.75rem; }
  .stat-divider { display: none; }
  .whatsapp-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
}
.map-container {
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.map-container iframe {
  width: 100%;
  height: 320px;
  border: 0;
}
.hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}
header {
  backdrop-filter: blur(10px);
  background: rgba(31, 41, 55, 0.9);
}
html {
  scroll-behavior: smooth;
}
.button {
  transition: all 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}
