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

:root {
  --primary: #1a1a2e;
  --secondary: #e94560;
  --accent: #f5a623;
  --dark: #0f0f1a;
  --light: #ffffff;
  --gray: #2a2a3e;
  --text-light: #ccc;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
}

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

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 15, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(233, 69, 96, 0.3);
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 50px;
  width: auto;
  max-width: 100%;
  display: block;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav a {
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s;
}

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

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

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

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--light);
  border-radius: 2px;
  transition: 0.3s;
}

/* BANNER SLIDER */
.banner-section {
  margin-top: 74px;
  position: relative;
  height: 70vh;
  min-height: 450px;
  overflow: hidden;
}

.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-slide.active {
  opacity: 1;
}

.banner-slide .banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}

.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  animation: fadeUp 0.8s ease;
}

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

.banner-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.banner-content h1 span {
  color: var(--secondary);
}

.banner-content p {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  padding: 14px 35px;
  background: var(--secondary);
  color: var(--light);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #d63851;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(233, 69, 96, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--secondary);
}

.btn-outline:hover {
  background: var(--secondary);
}

.banner-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.banner-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: 0.3s;
}

.banner-dots .dot.active {
  background: var(--secondary);
  transform: scale(1.3);
}

/* SECTIONS */
section {
  padding: 80px 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title h2 span {
  color: var(--secondary);
}

.section-title p {
  color: var(--text-light);
  font-size: 1.1rem;
}

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

/* SOBRE */
.about-section {
  background: var(--primary);
}

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

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--accent);
}

.about-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: var(--dark);
  border-radius: 12px;
  border: 1px solid rgba(233, 69, 96, 0.2);
}

.stat-item .number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
}

.stat-item .label {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 5px;
}

/* PRODUTOS */
.products-section {
  background: var(--dark);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.product-card {
  background: var(--primary);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--secondary);
  box-shadow: 0 15px 40px rgba(233, 69, 96, 0.15);
}

.product-card .icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.product-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* UNIDADES */
.stores-section {
  background: var(--primary);
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
}

.store-card {
  background: var(--dark);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(233, 69, 96, 0.15);
  transition: all 0.3s;
}

.store-card:hover {
  border-color: var(--secondary);
  transform: translateY(-4px);
}

.store-card h3 {
  font-size: 1.3rem;
  color: var(--secondary);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.store-card .store-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.store-card .store-info .info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

.store-card .store-info .info-item .icon-sm {
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.store-hours {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.store-hours summary {
  cursor: pointer;
  color: var(--accent);
  font-weight: 500;
  font-size: 0.9rem;
}

.store-hours table {
  width: 100%;
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.store-hours td {
  padding: 4px 0;
}

.store-hours td:first-child {
  text-transform: capitalize;
}

/* CONTATO */
.contact-section {
  background: var(--dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: var(--primary);
  border-radius: 12px;
  transition: 0.3s;
}

.contact-item:hover {
  transform: translateX(5px);
  border-left: 3px solid var(--secondary);
}

.contact-item .ci-icon {
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-item .ci-text h4 {
  margin-bottom: 3px;
}

.contact-item .ci-text p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.contact-map {
  border-radius: 16px;
  overflow: hidden;
  min-height: 350px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: none;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: 0.3s;
  animation: pulse 2s infinite;
}

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

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

/* FOOTER */
.footer {
  background: var(--primary);
  border-top: 1px solid rgba(233, 69, 96, 0.2);
  padding: 50px 20px 20px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--secondary);
}

.footer-col p,
.footer-col li {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-col ul {
  list-style: none;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: var(--text-light);
  font-size: 0.85rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .header-inner {
    padding: 10px 15px;
  }

  .logo img {
    height: 38px;
  }

  .nav ul {
    display: none;
    position: absolute;
    top: 58px;
    left: 0;
    width: 100%;
    background: var(--dark);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    border-bottom: 1px solid var(--secondary);
  }

  .nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .banner-section {
    margin-top: 58px;
    height: 55vh;
    min-height: 350px;
  }

  .banner-content h1 {
    font-size: 1.8rem;
  }

  .banner-content p {
    font-size: 1rem;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .stores-grid {
    grid-template-columns: 1fr;
  }

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

  section {
    padding: 50px 15px;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .banner-content h1 {
    font-size: 1.5rem;
  }

  .stat-item .number {
    font-size: 1.8rem;
  }
}

/* MAP LINK */
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 15px;
  padding: 8px 16px;
  background: var(--secondary);
  color: var(--light);
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
}

.map-link:hover {
  background: #d63851;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
}

/* MAP MODAL */
.map-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.map-modal.active {
  display: flex;
}

.map-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.map-modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  height: 70vh;
  max-height: 500px;
  background: var(--dark);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--secondary);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.map-modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  width: 36px;
  height: 36px;
  background: var(--secondary);
  color: var(--light);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  line-height: 1;
}

.map-modal-close:hover {
  background: #d63851;
  transform: scale(1.1);
}
