/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #1a1a1a;
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-icon { flex-shrink: 0; }

.logo-text {
  font-size: 1.6rem;
  color: #E91E8C;
  letter-spacing: -0.5px;
  line-height: 1;
}

.logo-text strong { font-weight: 900; }

/* WhatsApp button (navbar) */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #00A84D;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 12px 22px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.btn-wa:hover {
  background: #00943F;
  transform: scale(1.02);
}

.btn-wa svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  flex-shrink: 0;
}

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  background: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.88) 0%,
    rgba(255,255,255,0.76) 50%,
    rgba(255,255,255,0.60) 100%
  );
}

.hero-blob {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 288px;
  height: 288px;
  border-radius: 50%;
  background: rgba(233, 30, 140, 0.05);
  filter: blur(48px);
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 2px solid #E91E8C;
  border-radius: 24px;
  padding: 40px;
  max-width: 900px;
  box-shadow: 0 25px 60px rgba(233, 30, 140, 0.10);
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(233, 30, 140, 0.06);
  border-radius: 9999px;
  padding: 8px 16px;
  margin-bottom: 20px;
}

.hero-badge span {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #E91E8C;
  letter-spacing: 0.03em;
}

.hero-h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: #111111;
  line-height: 1.15;
}

.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #4A4A4A;
  margin-bottom: 12px;
  line-height: 1.4;
}

.hero-p {
  font-size: 0.9375rem;
  color: #7F7F7F;
  line-height: 1.75;
}

.hero-cta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #00A84D;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 168, 77, 0.22);
  transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
  width: 100%;
}

.hero-cta svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  flex-shrink: 0;
}

.hero-cta:hover {
  background: #00943F;
  box-shadow: 0 12px 28px rgba(0, 168, 77, 0.32);
  transform: scale(1.02);
}

/* ===========================
   DELIVERY
=========================== */
.delivery {
  background: linear-gradient(to bottom, #fff 0%, #FFF5F5 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.delivery-blob {
  position: absolute;
  left: -128px;
  top: 50%;
  transform: translateY(-50%);
  width: 256px;
  height: 256px;
  border-radius: 50%;
  background: rgba(233, 30, 140, 0.05);
  filter: blur(48px);
  pointer-events: none;
}

.delivery-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.delivery-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.delivery-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.delivery-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #E91E8C;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(233, 30, 140, 0.30);
}

.delivery-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
}

.delivery-title-red  { color: #E91E8C; }
.delivery-title-dark { color: #333333; }

.delivery-img {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.18));
}

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

.delivery-right {
  display: flex;
  flex-direction: column;
}

.delivery-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(233, 30, 140, 0.06);
  border-radius: 9999px;
  padding: 8px 16px;
  margin-bottom: 16px;
  width: fit-content;
}

.delivery-badge span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #E91E8C;
  letter-spacing: 0.04em;
}

.delivery-h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 900;
  color: #111111;
  line-height: 1.25;
  margin-bottom: 16px;
}

.delivery-p {
  font-size: 0.9375rem;
  color: #333333;
  line-height: 1.75;
  margin-bottom: 32px;
}

.delivery-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.d-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s, transform 0.3s;
}

.d-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
  transform: translateY(-4px);
}

.d-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(233, 30, 140, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.d-card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 6px;
}

.d-card-text {
  font-size: 0.875rem;
  color: #4A4A4A;
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

.d-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #E91E8C;
  text-decoration: none;
}

.d-card-link:hover { text-decoration: underline; }

/* ===========================
   ABOUT
=========================== */
.about {
  position: relative;
  background: #fff;
  overflow: hidden;
}

.about-bg {
  position: absolute;
  inset: 0;
}

.about-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(255,255,255,0.82) 0%,
    rgba(255,255,255,0.72) 50%,
    rgba(255,255,255,0.82) 100%
  );
}

.about-blob {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 288px;
  height: 288px;
  border-radius: 50%;
  background: rgba(233, 30, 140, 0.05);
  filter: blur(48px);
  pointer-events: none;
  z-index: 1;
}

.about-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px;
}

.about-card {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border: 2px solid #E91E8C;
  border-radius: 24px;
  padding: 40px;
  max-width: 900px;
  box-shadow: 0 25px 60px rgba(233, 30, 140, 0.10);
}

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

.about-h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 900;
  color: #111111;
  line-height: 1.2;
  margin-top: 4px;
}

.about-h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 12px;
  line-height: 1.4;
}

.about-p {
  font-size: 0.875rem;
  color: #333333;
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-address {
  background: #FFF5F5;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
}

.about-address-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 4px;
}

.about-address-cep {
  font-size: 0.875rem;
  font-weight: 600;
  color: #333333;
  margin-left: 24px;
}

.about-cta { width: 100%; }

/* ===========================
   MAP
=========================== */
.map-wrapper {
  width: 100%;
  height: 256px;
  background: #e5e7eb;
}

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

/* ===========================
   FOOTER
=========================== */
.footer {
  background: #E91E8C;
  color: #fff;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px;
}

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

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

.footer-logo span {
  font-size: 1.875rem;
  font-weight: 900;
  color: #fff;
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.90);
  line-height: 1.75;
  max-width: 480px;
}

.footer-contact { display: flex; flex-direction: column; }

.footer-label {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.footer-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.90);
  line-height: 1.65;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.footer-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.90);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover { color: #fff; }

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.20);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.70);
}

/* ===========================
   SCROLL REVEAL
=========================== */
.reveal       { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.reveal-left  { opacity: 0; transform: scale(0.95);      transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s 0.15s cubic-bezier(0.22,1,0.36,1), transform 0.7s 0.15s cubic-bezier(0.22,1,0.36,1); }
.visible { opacity: 1 !important; transform: none !important; }

/* ===========================
   RESPONSIVE
=========================== */

/* ── Extra-small: até 479px ── */
@media (max-width: 479px) {
  .navbar { padding: 12px 16px; }
  .btn-wa span { display: none; }
  .btn-wa { padding: 10px 12px; border-radius: 10px; }
  .logo-text { font-size: 1.3rem; }

  .hero-card { padding: 24px 20px; border-radius: 16px; }
  .hero-inner { padding: 24px 16px; }

  .delivery-inner { padding: 0 16px; }
  .delivery { padding: 48px 0; }
  .delivery-cards { grid-template-columns: 1fr; }

  .about-card { padding: 24px 20px; border-radius: 16px; }
  .about-inner { padding: 24px 16px; }

  .footer-inner { padding: 40px 16px; }
  .footer-logo span { font-size: 1.5rem; }
}

/* ── Small: 480px–639px ── */
@media (min-width: 480px) {
  .navbar { padding: 14px 24px; }
  .hero-card { padding: 32px; }
  .hero-inner { padding: 32px 20px; }
  .about-card { padding: 32px; }
  .about-inner { padding: 40px 20px; }
}

/* ── Medium: 640px+ ── */
@media (min-width: 640px) {
  .hero-cta { width: auto; }
  .about-cta { width: auto; }
  .delivery-cards { grid-template-columns: 1fr 1fr; }
  .hero-card { padding: 40px; }
  .hero-inner { padding: 40px 24px; }
}

/* ── Tablet: 768px+ ── */
@media (min-width: 768px) {
  .hero-overlay {
    background: linear-gradient(
      to right,
      rgba(255,255,255,0.92) 0%,
      rgba(255,255,255,0.78) 55%,
      rgba(255,255,255,0.55) 100%
    );
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-contact { text-align: right; }
  .footer-contact-row { justify-content: flex-end; }
  .footer-inner { padding: 56px 32px; }
}

/* ── Desktop: 1024px+ ── */
@media (min-width: 1024px) {
  .navbar { padding: 16px 40px; }
  .hero-inner { padding: 80px 40px; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .hero-card { padding: 56px; }

  .delivery { padding: 96px 0; }
  .delivery-inner { padding: 0 40px; }
  .delivery-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .delivery-right { padding-left: 24px; }

  .about-inner { padding: 96px 40px; }
  .about-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .about-card { padding: 56px; }

  .footer-inner { padding: 64px 40px; }
}

/* ── Extra-large: 1280px+ ── */
@media (min-width: 1280px) {
  .navbar { padding: 16px 48px; }
  .hero-inner, .delivery-inner, .about-inner {
    padding-left: 48px;
    padding-right: 48px;
  }
}
