:root {
  --ae-orange: #f39200;
  --ae-orange-dark: #d87c00;
  --ae-orange-light: #ffb547;
  --ae-dark: #1f2328;
  --ae-grey: #5b6470;
  --ae-bg: #fafafa;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ae-dark);
  background: var(--ae-bg);
}

a { color: var(--ae-orange-dark); }
a:hover { color: var(--ae-orange); }

.btn-primary,
.btn-primary:focus {
  background-color: var(--ae-orange);
  border-color: var(--ae-orange);
}
.btn-primary:hover,
.btn-primary:active {
  background-color: var(--ae-orange-dark);
  border-color: var(--ae-orange-dark);
}

.btn-outline-primary {
  color: var(--ae-orange-dark);
  border-color: var(--ae-orange);
}
.btn-outline-primary:hover {
  background-color: var(--ae-orange);
  border-color: var(--ae-orange);
}

.text-primary { color: var(--ae-orange-dark) !important; }
.bg-primary { background-color: var(--ae-orange) !important; }
.border-primary { border-color: var(--ae-orange) !important; }

.navbar-brand img { height: 44px; width: auto; }

.navbar {
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  background-color: #fff;
}

.navbar .nav-link {
  font-weight: 500;
  color: var(--ae-dark);
  padding: .5rem 1rem !important;
}
.navbar .nav-link:hover { color: var(--ae-orange-dark); }
.navbar .nav-link.active {
  color: var(--ae-orange-dark);
  border-bottom: 2px solid var(--ae-orange);
}

.hero {
  background: linear-gradient(135deg, #fff8ec 0%, #ffe9c4 100%);
  padding: 5rem 0 4rem;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.hero h1 {
  font-weight: 700;
  letter-spacing: -.02em;
}
.hero .lead { color: var(--ae-grey); }
.hero-logo { max-height: 220px; }

.value-icon {
  font-size: 2.5rem;
  color: var(--ae-orange-dark);
}

.page-header {
  background: linear-gradient(135deg, var(--ae-orange) 0%, var(--ae-orange-dark) 100%);
  color: #fff;
  padding: 3rem 0;
}
.page-header h1 {
  font-weight: 700;
  margin: 0;
}
.page-header .breadcrumb {
  --bs-breadcrumb-divider-color: rgba(255,255,255,.6);
  background: transparent;
  padding: 0;
  margin-top: .5rem;
}
.page-header .breadcrumb a { color: rgba(255,255,255,.85); text-decoration: none; }
.page-header .breadcrumb .active { color: #fff; }

.feature-card {
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 12px;
  background: #fff;
  height: 100%;
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.feature-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(243,146,0,.12);
  color: var(--ae-orange-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.equipment-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: .75rem 1.5rem;
}
.equipment-list li {
  padding: .6rem .85rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 8px;
  font-weight: 500;
}
.equipment-list li i {
  color: var(--ae-orange);
  margin-right: .5rem;
}

.call-card {
  background: linear-gradient(135deg, var(--ae-orange) 0%, var(--ae-orange-dark) 100%);
  color: #fff;
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(243,146,0,.25);
}
.call-card h3 {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: .75rem;
}
.call-card .call-phone {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -.01em;
  display: block;
  margin: .5rem 0;
}
.call-card .call-phone a {
  color: #fff;
  text-decoration: none;
}
.call-card .call-phone a:hover { text-decoration: underline; }
.call-card .btn-light {
  font-weight: 600;
  color: var(--ae-orange-dark);
}

.btn-whatsapp,
.btn-whatsapp:focus {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
  font-weight: 600;
}
.btn-whatsapp:hover,
.btn-whatsapp:active {
  background: #128c7e;
  border-color: #128c7e;
  color: #fff;
}

.whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
  z-index: 1000;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.whatsapp-fab:hover,
.whatsapp-fab:focus {
  background: #128c7e;
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
@media (max-width: 576px) {
  .whatsapp-fab {
    width: 52px;
    height: 52px;
    font-size: 1.65rem;
    right: 14px;
    bottom: 14px;
  }
}

.product-card {
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  height: 100%;
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.product-card .product-thumb {
  aspect-ratio: 4 / 3;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--ae-orange);
}
.product-card .product-body { padding: 1rem 1.25rem; }
.product-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 .25rem;
}
.product-card .price {
  color: var(--ae-orange-dark);
  font-weight: 700;
}

footer {
  background: var(--ae-dark);
  color: rgba(255,255,255,.75);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}
footer h5 { color: #fff; font-weight: 600; }
footer a { color: rgba(255,255,255,.75); text-decoration: none; }
footer a:hover { color: var(--ae-orange-light); }
footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 2rem;
  padding-top: 1.5rem;
  font-size: .9rem;
  color: rgba(255,255,255,.55);
}

.contact-info dt { color: var(--ae-grey); font-weight: 500; }
.contact-info dd { font-weight: 600; margin-bottom: 1rem; }

.map-frame {
  width: 100%;
  border: 0;
  border-radius: 12px;
  min-height: 360px;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

@media (max-width: 768px) {
  .hero { padding: 3rem 0; }
  .page-header { padding: 2rem 0; }
}
