/* Design System / Cores */
:root {
  --primary: #00A389;
  --primary-hover: color-mix(in srgb, var(--primary) 85%, black);
  --primary-light: color-mix(in srgb, var(--primary) 15%, transparent);
  --primary-gradient: linear-gradient(135deg, var(--primary) 0%, color-mix(in srgb, var(--primary) 70%, white) 100%);
  --accent: #25D366;
  --accent-hover: color-mix(in srgb, var(--accent) 85%, black);
  --accent-gradient: linear-gradient(135deg, var(--accent) 0%, color-mix(in srgb, var(--accent) 70%, black) 100%);
  --white: #FFFFFF;
  --light-gray: #F8FAFC;
  --gray: #E2E8F0;
  --dark-gray: #1E293B;
  --text-dark: #334155;
  --text-light: #64748B;
  
  --radius-xl: 0.75rem;
  --radius-2xl: 1.25rem;
  --radius-3xl: 2rem;
  --radius-pill: 9999px;

  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 0 20px rgba(0, 0, 0, 0.25);
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background-color: var(--light-gray);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  color: var(--dark-gray);
  font-weight: 800;
  line-height: 1.2;
}

p {
  font-weight: 400;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

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

@keyframes border-shine {
  0%   { border-color: rgba(255,255,255,0.3); }
  50%  { border-color: rgba(255,255,255,1); }
  100% { border-color: rgba(255,255,255,0.3); }
}

.fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.flex { display: flex; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.items-center { align-items: center; }
.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.text-center { text-align: center; }

/* Components */
.badge {
  display: inline-block;
  background-color: var(--primary-light);
  color: var(--primary);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: var(--primary-gradient);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.25);
  border: none;
  cursor: pointer;
  gap: 0.75rem;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.35);
}

.btn-full {
  width: 100%;
  display: flex;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: var(--radius-pill);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--primary-gradient);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 8px 15px -5px rgba(0, 0, 0, 0.15);
}

/* 1. Header */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.25rem 0;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo img {
  height: 140px;
  object-fit: contain;
}

/* 2. Hero Section */
.hero {
  position: relative;
  width: 100%;
  padding: 8rem 0 6rem 0;
  background: url('/assets/hero.png') center/cover no-repeat;
  display: flex;
  align-items: center;
}



.hero-content {
  position: relative;
  z-index: 10;
}

.hero-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.8);
  padding: 3rem;
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-lg);
  max-width: 650px;
  animation: fadeInUp 1s ease-out;
}

.hero-card h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  line-height: 1.1;
}

.hero-card p {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

/* Info Bar */
.info-bar {
  background: var(--white);
  padding: 1.5rem 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--gray);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--dark-gray);
  font-size: 1rem;
}

.info-item i {
  color: var(--primary);
  font-size: 1.25rem;
}

/* 3. Benefícios (Delivery) */
.benefits {
  padding: 6rem 0;
  background-color: var(--light-gray);
  position: relative;
}

.benefits .grid {
  align-items: center;
}

.benefits-img {
  position: relative;
}

.benefits-img img {
  width: 100%;
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  animation: float 6s ease-in-out infinite;
}

.benefits-img::after {
  content: '';
  position: absolute;
  top: -20px; left: -20px; right: 20px; bottom: 20px;
  border: 2px dashed var(--primary);
  border-radius: var(--radius-3xl);
  z-index: -1;
}

.benefits-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.benefits-content p.desc {
  color: var(--text-light);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
}

.sub-cards {
  display: flex;
  gap: 1.5rem;
}

.sub-card {
  background-color: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-2xl);
  flex: 1;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.02);
}

.sub-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.icon-wrapper i {
  color: var(--primary);
  font-size: 1.75rem;
}

.sub-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--dark-gray);
}

.sub-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
}

/* 4. Grupo VIP */
.vip-group {
  padding: 6rem 0;
  background-color: var(--white);
}

.section-header {
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary);
}

.section-header p {
  color: var(--text-light);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

.vip-img {
  display: flex;
  justify-content: center;
  position: relative;
}

.vip-img img {
  max-width: 85%;
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.blob {
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--primary-light);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.features-list {
  list-style: none;
  margin-bottom: 3rem;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
  background: var(--light-gray);
  padding: 1.5rem;
  border-radius: var(--radius-2xl);
  transition: transform 0.3s;
}

.features-list li:hover {
  transform: translateX(10px);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--primary-light);
}

.feature-icon {
  width: 54px;
  height: 54px;
  background: var(--primary-gradient);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.feature-text h3 {
  font-size: 1.25rem;
  color: var(--dark-gray);
  margin-bottom: 0.25rem;
}

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

.unit-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .unit-cards-grid {
    grid-template-columns: 1fr;
  }
}
.unit-select-card {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}
.unit-select-card:hover {
  border-color: #cbd5e1;
  background: #f1f5f9;
}
.unit-select-card.selected {
  border-color: var(--primary);
  background: rgba(220, 38, 38, 0.05);
}
.unit-select-card .unit-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.unit-select-card .unit-name { font-weight: 700; color: var(--secondary); font-size: 1.1rem; }
.unit-select-card .unit-address { font-size: 0.85rem; color: #64748b; margin-top: 0.25rem; }

/* 5. Autoridade Local */
.authority {
  position: relative;
  width: 100%;
  padding: 6rem 0;
  background: url('/assets/interior.png') center/cover no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
}

.authority::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
}

.authority .container {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: flex-end;
}

.authority-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  padding: 3rem;
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-lg);
  max-width: 550px;
  border: 1px solid rgba(255,255,255,0.5);
}

.authority-card h2 {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
  color: var(--primary);
}

.authority-card p.desc {
  color: var(--text-dark);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.contact-info {
  border-top: 2px solid var(--light-gray);
  padding-top: 1.5rem;
}

.contact-info p {
  color: var(--dark-gray);
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.05rem;
}

.contact-info p i {
  color: var(--primary);
  font-size: 1.25rem;
}

/* 6. Mapa */
.map-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.map-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.map-card {
  flex: 1 1 350px;
  max-width: 1000px; /* Expande para ocupar quase todo o espaço */
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s;
  border: 1px solid var(--gray);
}
.map-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.map-embed-wrap {
  width: 100%;
  height: 250px;
  background: var(--light-gray);
  position: relative;
}
.map-embed-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(10%) contrast(1.05);
}
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-light);
  font-size: 1.1rem;
}

.map-info-card {
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
}
.map-info-icon {
  font-size: 2rem;
}
.map-info-body {
  flex: 1;
}
.map-info-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--dark-gray);
}
.map-address {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.map-phone {
  display: inline-block;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  margin-bottom: 1rem;
}
.map-actions {
  margin-top: 0.5rem;
}
.btn-map-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.btn-map-whatsapp:hover {
  background: var(--accent-hover);
  transform: scale(1.02);
}

/* 7. Footer */
.footer {
  color: var(--white);
  padding: 3rem 0 2rem 0;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  margin: -3rem 2rem 3rem 2rem;
  z-index: 10;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
}

.footer .grid {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 10;
}

.footer-col h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 1.75rem;
  position: relative;
  display: inline-block;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 40px; height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-logo {
  width: 567px;
  height: 207px;
  max-width: 100%;
  margin-bottom: 0.5rem;
  object-fit: contain;
  object-position: left center;
}

.footer-col p {
  color: var(--gray);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-col p i {
  margin-top: 0.35rem;
  color: var(--primary);
}

.bottom-bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
  position: relative;
  z-index: 10;
}

/* 8. Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
  background: var(--accent-gradient);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255,255,255,0.3);
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: pulse-glow 2s infinite, border-shine 2s infinite;
}

.sticky-cta.visible {
  opacity: 1;
  pointer-events: auto;
}

.sticky-cta:hover {
  transform: translate(-50%, -5px) scale(1.05);
  background: linear-gradient(135deg, #1EBE5A 0%, #128C7E 100%);
}

/* Responsive */
/* Tablets */
@media (max-width: 992px) {
  .hero-card h1 { font-size: 2.5rem; }
  .grid-cols-2 { gap: 3rem; }
}

/* Mobile */
@media (max-width: 768px) {

  /* --- Global --- */
  * { box-sizing: border-box; }
  img { max-width: 100%; height: auto; }

  .container {
    padding: 0 1rem;
  }

  .grid-cols-2 {
    grid-template-columns: 1fr;
  }

  /* --- Header --- */
  .header {
    padding: 1rem 0;
    border-bottom: 2px solid var(--gray);
  }

  .header .container {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .logo img {
    height: 110px;
    width: auto;
    display: block;
  }

  .header .btn-outline {
    display: none;
  }

  /* --- Hero --- */
  .hero {
    padding: 3rem 0 2.5rem 0;
    text-align: center;
  }

  .hero-card {
    padding: 1.75rem 1.25rem;
    max-width: 100%;
    border-radius: 1rem;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-card);
  }

  .hero-card h1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .hero-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .btn-primary {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* --- Info Bar --- */
  .info-bar {
    padding: 1rem 0;
  }

  .info-bar .flex {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }

  /* --- Benefits --- */
  .benefits {
    padding: 3rem 0;
  }

  .benefits-content {
    text-align: center;
  }

  .benefits-content h2 {
    font-size: 1.75rem;
  }

  .benefits-img::after {
    display: none;
  }

  .sub-cards {
    flex-direction: column;
    gap: 1rem;
  }

  .sub-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* --- VIP --- */
  .vip-group {
    padding: 3rem 0;
    text-align: center;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .vip-img {
    display: flex;
    justify-content: center;
  }

  .vip-img img {
    max-width: 85%;
  }

  .blob { display: none; }

  .features-list {
    padding: 0;
  }

  .features-list li {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 1rem;
    gap: 1rem;
  }

  /* --- Authority --- */
  .authority {
    padding: 3rem 0;
    background-position: center;
  }

  .authority .container {
    justify-content: center;
  }

  .authority-card {
    padding: 1.5rem 1.25rem;
    text-align: center;
    width: 100%;
  }

  .authority-card h2 {
    font-size: 1.6rem;
  }

  .contact-info p {
    justify-content: center;
    font-size: 0.95rem;
  }

  /* --- Map --- */
  .map-section iframe {
    height: 250px;
  }

  /* --- Footer --- */
  .footer {
    padding: 3rem 0 1.5rem 0;
    text-align: center;
    margin: -2.5rem 1rem 2rem 1rem;
    border-radius: 16px;
    z-index: 10;
    position: relative;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
  }

  .footer .grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-col p {
    justify-content: center;
  }

  .footer-logo {
    width: 100%;
    height: auto;
    max-width: 320px;
  }

  /* --- Sticky CTA --- */
  .sticky-cta {
    left: 0;
    right: 0;
    width: auto;
    margin: 0 1rem;
    justify-content: center;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
    bottom: 1rem;
    transform: translateY(120px);
  }

  .sticky-cta.visible {
    transform: translateY(0);
    animation: none;
  }

  .sticky-cta:hover {
    transform: translateY(-3px) scale(1.02);
  }
}

/* Celulares pequenos (iPhone SE, 375px) */
@media (max-width: 420px) {
  .hero-card h1 { font-size: 1.5rem; }
  .section-header h2 { font-size: 1.5rem; }
  .benefits-content h2 { font-size: 1.5rem; }
  .authority-card h2 { font-size: 1.4rem; }
  .badge { font-size: 0.75rem; padding: 0.4rem 1rem; }
  .header .btn-outline { font-size: 0.8rem; padding: 0.45rem 0.85rem; }
  .logo img { height: 90px; }
}

/* Evaluation Page */
.eval-page { background: #F3F4F6; min-height: 100vh; font-family: var(--font-poppins); }
.eval-header { background: white; padding: 1rem 0; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.btn-outline-eval { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1.25rem; border: 1px solid var(--primary); color: var(--primary); border-radius: 999px; text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: all 0.3s; }
.btn-outline-eval:hover { background: var(--primary-light); }
.eval-hero { padding: 4rem 1rem; text-align: center; }
.eval-hero h2 { font-size: 2.2rem; color: #1E293B; font-weight: 800; max-width: 700px; margin: 0 auto; line-height: 1.2; }
.eval-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; padding-bottom: 5rem; }
.eval-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); display: flex; flex-direction: column; }
.eval-map-container { position: relative; height: 200px; }
.eval-map-container iframe { width: 100%; height: 100%; border: none; }
.open-maps-btn { position: absolute; top: 1rem; left: 1rem; background: white; color: #3B82F6; padding: 0.5rem 1rem; border-radius: 4px; font-size: 0.85rem; font-weight: 600; text-decoration: none; box-shadow: 0 2px 5px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 0.5rem; }
.eval-card-content { padding: 2rem; text-align: center; flex: 1; }
.eval-card-content h3 { font-size: 1.5rem; color: #334155; margin-bottom: 0.5rem; }
.eval-card-content p { color: #64748B; margin-bottom: 2rem; }
.eval-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.eval-btn-positive, .eval-btn-negative { border: none; border-radius: 8px; padding: 1.5rem 1rem; cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; transition: transform 0.2s; }
.eval-btn-positive:hover, .eval-btn-negative:hover { transform: translateY(-3px); }
.eval-btn-positive { background: #E8F5E9; color: #2E7D32; }
.eval-btn-negative { background: #FFEBEE; color: #C62828; }
.eval-emoji { font-size: 2.5rem; }
.eval-btn-text { font-weight: 700; font-size: 0.95rem; }
.eval-footer { text-align: center; padding: 1rem; font-size: 0.75rem; color: #94A3B8; border-top: 1px solid #F1F5F9; }
.eval-bottom-footer { color: white; padding: 3rem 0; }
.eval-footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem; }
.footer-left { max-width: 400px; }
.footer-right h4 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.footer-right p { opacity: 0.9; margin-bottom: 0.5rem; }
.footer-copyright { text-align: center; padding-top: 2rem; opacity: 0.7; font-size: 0.9rem; margin-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
.eval-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); display: flex; align-items: center; justify-content: center; z-index: 1000; padding: 1rem; }
.eval-modal-content { background: white; width: 100%; max-width: 600px; border-radius: 12px; padding: 2.5rem; position: relative; max-height: 90vh; overflow-y: auto; }
.eval-modal-close { position: absolute; top: 1rem; right: 1.5rem; font-size: 2rem; background: none; border: none; cursor: pointer; color: #94A3B8; }
.eval-modal-content h3 { font-size: 1.5rem; color: #1E293B; margin-bottom: 1.5rem; border-bottom: 1px solid #E2E8F0; padding-bottom: 1rem; }
.form-group { margin-bottom: 1.5rem; text-align: left; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: #334155; font-size: 0.95rem; }
.form-control { 
  width: 100%; 
  padding: 0.875rem 1.25rem; 
  border: 1px solid #e2e8f0; 
  border-radius: 12px; 
  font-family: inherit; 
  font-size: 1rem; 
  background-color: #f8fafc;
  color: #0f172a;
  transition: all 0.2s ease;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb, 59, 130, 246), 0.15);
}
.form-control::placeholder { color: #94a3b8; }
.radio-group { display: flex; gap: 1rem; }
.radio-label { display: flex; align-items: center; gap: 0.25rem; font-weight: 600; color: #475569; cursor: pointer; }
.eval-submit-btn { width: 100%; background: #0284C7; color: white; border: none; padding: 1rem; border-radius: 6px; font-size: 1.1rem; font-weight: 700; cursor: pointer; transition: background 0.3s; }
.eval-submit-btn:hover { background: #0369A1; }
.eval-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; }
@media (max-width: 768px) {
  .eval-hero h2 { font-size: 1.5rem; }
  .eval-grid { grid-template-columns: 1fr; }
  .eval-footer-content { flex-direction: column; }
}

/* ─── REVIEW PAGE FIXES ─────────────────────────────────────── */
.review-page {
  background: #f8fafc;
  min-height: calc(100vh - 200px);
  padding-bottom: 4rem;
}

.review-hero {
  background: var(--primary);
  color: white;
  padding: 3rem 0;
  text-align: center;
  margin-bottom: -2rem;
}
.review-hero h1 { font-size: 2rem; font-weight: 800; margin: 0; }

.review-content {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  padding: 2.5rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.unit-selector { margin-bottom: 2rem; text-align: center; }
.unit-selector label { font-weight: 700; color: var(--secondary); margin-bottom: 0.5rem; display: block; }
.form-select { padding: 0.75rem; border-radius: 8px; border: 1px solid #cbd5e1; font-size: 1rem; width: 100%; max-width: 400px; }

.unit-details { text-align: center; }
.map-container { height: 200px; border-radius: 12px; overflow: hidden; margin-bottom: 1.5rem; }
.map-container iframe { width: 100%; height: 100%; border: 0; }
#unit-name { color: var(--secondary); margin-bottom: 0.5rem; }
.question { font-size: 1.15rem; color: #475569; margin-bottom: 2rem; }

.review-cards {
  display: flex; gap: 1.5rem; justify-content: center;
}
.review-card {
  flex: 1; max-width: 280px;
  background: #f1f5f9;
  border-radius: 16px;
  padding: 2rem;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
}
.review-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
.review-card .emoji { font-size: 3.5rem; margin-bottom: 1rem; }
.review-card h3 { font-size: 1.25rem; font-weight: 700; color: #334155; margin: 0; }

.positive-card:hover { border-color: #22c55e; background: #f0fdf4; }
.negative-card:hover { border-color: #ef4444; background: #fef2f2; }

/* Modal */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(15,23,42,0.8);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: none; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal-backdrop.active { display: flex; opacity: 1; }
.modal-content {
  background: white; border-radius: 24px;
  width: 90%; max-width: 500px;
  padding: 0; position: relative;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.modal-backdrop.active .modal-content {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: rgba(241, 245, 249, 0.8); border: none; 
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #64748b; cursor: pointer; line-height: 1;
  transition: all 0.2s; z-index: 10;
}
.modal-close:hover {
  background: #e2e8f0; color: #0f172a;
}
.modal-header { padding: 2.5rem 2.5rem 1.5rem; background: #f8fafc; border-bottom: 1px solid #f1f5f9; border-radius: 24px 24px 0 0; }
.modal-header h3 { font-size: 1.35rem; color: var(--secondary); margin-bottom: 0.5rem; font-weight: 800; }
.modal-body { padding: 2rem 2.5rem 2.5rem; }

/* Premium Modal Layout */
.modal-icon-top { font-size: 3rem; line-height: 1; margin-bottom: 1rem; }
.modern-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.modern-form .form-group { position: relative; margin-bottom: 1.5rem; text-align: left; }
.modern-form .form-group label {
  position: absolute; top: 50%; left: 1rem; transform: translateY(-50%);
  color: #94a3b8; pointer-events: none; transition: all 0.2s ease;
  font-size: 1rem; background: white; padding: 0 0.25rem;
}
.modern-form .form-control-floating {
  width: 100%; padding: 1.25rem 1rem 0.5rem;
  border: 2px solid #e2e8f0; border-radius: 12px;
  font-family: var(--font-family); font-size: 1rem; color: #1e293b;
  background: white; transition: all 0.2s; outline: none;
}
.modern-form .form-control-floating:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(220,38,38,0.1); }
.modern-form .form-control-floating:focus + label,
.modern-form .form-control-floating:not(:placeholder-shown) + label {
  top: 0; font-size: 0.75rem; color: var(--primary); font-weight: 600;
}
.modern-form .textarea-floating { padding-top: 1.25rem; min-height: 100px; resize: vertical; }
.modern-form .textarea-floating + label { top: 1rem; transform: none; }
.modern-form .textarea-floating:focus + label,
.modern-form .textarea-floating:not(:placeholder-shown) + label { top: -0.5rem; }

.glass-panel { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 16px; padding: 1.5rem; margin-bottom: 1.5rem; }
.rating-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.rating-row:last-child { margin-bottom: 0; }
.rating-row span { font-weight: 600; color: #475569; font-size: 0.95rem; }

/* Star Rating */
.star-rating { display: flex; flex-direction: row-reverse; gap: 0.25rem; }
.star-rating input { display: none; }
.star-rating label {
  font-size: 2rem; color: #cbd5e1; cursor: pointer; transition: all 0.2s;
  line-height: 1; padding: 0 0.1rem;
}
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label { color: #fbbf24; }

.btn-submit-review { margin-top: 0.5rem; padding: 1rem; font-size: 1.1rem; border-radius: 12px; }

.success-state { padding: 3rem 2rem !important; }
.success-icon {
  width: 80px; height: 80px; background: #22c55e; color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; margin: 0 auto 1.5rem; font-weight: bold;
  box-shadow: 0 10px 25px -5px rgba(34,197,94,0.4);
}

@media (max-width: 600px) {
  .modern-form .form-row { grid-template-columns: 1fr; gap: 0; }
  .modal-content { width: 95%; }
  .modal-header, .modal-body { padding-left: 1.5rem; padding-right: 1.5rem; }
}

.rating-group { display: flex; gap: 0.5rem; }
.rating-label input { display: none; }
.rating-box {
  width: 44px; height: 44px; border-radius: 12px;
  background: #f1f5f9; display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #64748b; cursor: pointer; transition: all 0.2s;
  border: 2px solid transparent;
}
.rating-label input:checked + .rating-box { background: var(--primary); color: white; border-color: var(--primary); transform: scale(1.05); }
.rating-label:hover .rating-box { background: #e2e8f0; }

.hidden { display: none !important; }

/* Paused / Inactive Page */
.paused-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-color, #F8FAFC);
  text-align: center;
  padding: 2rem;
  font-family: var(--font-family);
}
.paused-content {
  background: white;
  padding: 3rem 2rem;
  border-radius: 24px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
  max-width: 500px;
  width: 100%;
  animation: fadeInUp 0.8s ease-out;
}
.paused-logo {
  max-width: 180px;
  max-height: 80px;
  object-fit: contain;
  margin-bottom: 2rem;
}
.paused-message-box {
  margin-bottom: 2.5rem;
}
.paused-message-box h2 {
  font-size: 1.75rem;
  color: var(--secondary, #1E3A5F);
  margin-bottom: 0.75rem;
  font-weight: 800;
}
.paused-message-box p {
  color: #475569;
  font-size: 1.1rem;
  line-height: 1.5;
}
.paused-contact p {
  font-weight: 600;
  color: #64748b;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #25D366;
  color: white;
  padding: 1rem 2rem;
  border-radius: 99px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px -5px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px -5px rgba(37, 211, 102, 0.5);
}
.paused-footer {
  margin-top: 3rem;
  color: #94a3b8;
  font-size: 0.875rem;
}
.paused-footer strong {
  color: #64748b;
}

/* Products Section */
.products-section {
  padding: 4rem 0;
  background-color: var(--bg);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(var(--desktop-cols, 4), 1fr);
  gap: 1.5rem;
}
.products-carousel {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding: 1rem 0 2rem 0;
  -webkit-overflow-scrolling: touch;
}
.products-carousel .product-card {
  flex: 0 0 auto;
  width: calc(100% / var(--desktop-cols) - 1.5rem);
}
@media (max-width: 768px) {
  .products-carousel .product-card {
    width: calc(100% / var(--mobile-cols) - 1rem);
  }
}
.products-carousel {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.products-carousel::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}
.product-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.01);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}
.product-image {
  width: 100%;
  aspect-ratio: 1;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}
.product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.product-info {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}
.product-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.product-price-box {
  margin-top: auto;
  border-radius: 8px;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  border: 1px solid rgba(0,0,0,0.05);
  margin-bottom: 0.5rem;
}
.product-extra-text {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
  background: rgba(220, 38, 38, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  display: inline-block;
}
.btn-product-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: #25D366;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 99px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  width: 100%;
}
.btn-product-whatsapp:hover {
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  filter: brightness(1.1);
}
.regular-price {
  font-size: 0.9rem;
  opacity: 0.7;
  text-decoration: line-through;
  margin-bottom: 0.25rem;
}
.offer-price-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  position: relative;
}
.currency {
  font-size: 1rem;
  font-weight: 600;
}
.offer-price {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.5px;
}
.offer-badge {
  position: absolute;
  bottom: -0.2rem;
  right: -0.2rem;
  background-color: var(--text);
  color: var(--bg);
  font-size: 0.55rem;
  font-weight: 800;
  padding: 0.2rem 0.4rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(var(--mobile-cols, 2), 1fr);
    gap: 1rem;
  }
  .product-info {
    padding: 1rem;
  }
  .product-name {
    font-size: 0.95rem;
  }
  .offer-price {
    font-size: 2rem;
  }
  .offer-badge {
    bottom: -0.5rem;
    right: -0.5rem;
  }
}

/* ─── CARRINHO DE COMPRAS ─────────────────────── */
.floating-cart-btn { position: fixed; top: 20px; right: 20px; background: var(--primary); color: white; border: none; border-radius: 50%; width: 60px; height: 60px; font-size: 1.5rem; box-shadow: 0 4px 15px rgba(0,0,0,0.3); cursor: pointer; z-index: 9999; display: flex; align-items: center; justify-content: center; transition: transform 0.2s; }
.floating-cart-btn:hover { transform: scale(1.1); }
.cart-badge { position: absolute; top: -5px; right: -5px; background: #EF4444; color: white; border-radius: 50%; width: 24px; height: 24px; font-size: 0.8rem; font-weight: bold; display: flex; align-items: center; justify-content: center; border: 2px solid white; }
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 9999; display: none; opacity: 0; transition: opacity 0.3s; }
.cart-overlay.show { display: block; opacity: 1; }
.cart-sidebar { position: fixed; top: 0; right: -400px; width: 400px; max-width: 100%; height: 100vh; background: white; z-index: 10000; box-shadow: -5px 0 25px rgba(0,0,0,0.1); transition: right 0.3s ease; display: flex; flex-direction: column; }
.cart-sidebar.open { right: 0; }
.cart-header { padding: 1.5rem; border-bottom: 1px solid #e2e8f0; display: flex; justify-content: space-between; align-items: center; }
.cart-header h3 { margin: 0; color: var(--text); }
.cart-close-btn { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #64748b; }
.cart-body { flex: 1; overflow-y: auto; padding: 1.5rem; }
.cart-empty-msg { text-align: center; color: #94a3b8; margin-top: 2rem; }
.cart-item { display: flex; justify-content: space-between; align-items: center; padding-bottom: 1rem; border-bottom: 1px solid #f1f5f9; margin-bottom: 1rem; }
.cart-item-info h4 { margin: 0 0 0.25rem 0; font-size: 1rem; }
.cart-item-price { color: var(--primary); font-weight: bold; }
.cart-item-controls { display: flex; align-items: center; gap: 0.5rem; }
.cart-item-controls button { width: 28px; height: 28px; border-radius: 4px; border: 1px solid #cbd5e1; background: white; cursor: pointer; font-weight: bold; }
.cart-item-remove { color: #ef4444; font-size: 0.8rem; cursor: pointer; background:none; border:none; padding:0; text-decoration: underline; }
.cart-address-box { padding: 0 1.5rem 1rem 1.5rem; }
.cart-address-box label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: #475569; font-size: 0.9rem; }
.cart-address-box input { width: 100%; padding: 0.75rem; border: 1px solid #cbd5e1; border-radius: 8px; font-size: 0.95rem; }
.cart-footer { padding: 1.5rem; border-top: 1px solid #e2e8f0; background: #f8fafc; }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; font-size: 1.25rem; margin-bottom: 1rem; }
.cart-total-row strong { color: var(--primary); }
.cart-checkout-btn { width: 100%; padding: 1rem; background: #25D366; color: white; border: none; border-radius: 8px; font-weight: bold; font-size: 1.1rem; cursor: pointer; display: flex; justify-content: center; align-items: center; gap: 0.5rem; }
.cart-checkout-btn:hover { background: #22c55e; }

/* iFood-style Coupon Card */
.ifood-coupon-card {
  display: flex;
  align-items: center;
  background-color: #f0fdf4;
  border: 1px dashed #22c55e;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 15px;
  gap: 12px;
}
.ifood-coupon-icon {
  font-size: 1.5rem;
  background: #22c55e;
  color: white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.ifood-coupon-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ifood-coupon-info strong {
  font-size: 0.95rem;
  color: #166534;
  margin-bottom: 2px;
}
.ifood-coupon-info span {
  font-size: 0.75rem;
  color: #15803d;
  line-height: 1.2;
}
.ifood-coupon-btn {
  background: transparent;
  border: 1px solid #22c55e;
  color: #22c55e;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.2s;
}
.ifood-coupon-btn:hover {
  background: #22c55e;
  color: white;
}

/* Cart Coupon Box */
.cart-coupon-box {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.cart-coupon-box input {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 0.95rem;
  outline: none;
}
.cart-coupon-box input:focus {
  border-color: var(--primary);
}
.cart-coupon-box button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0 15px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
.cart-coupon-box button:hover {
  background: var(--primary);
  opacity: 0.9;
}
.cart-coupon-msg {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 15px;
}
.cart-coupon-msg.success { color: #16a34a; font-weight: 600; }
.cart-coupon-msg.error { color: #ef4444; font-weight: 600; }
.cart-discount-row {
  display: flex;
  justify-content: space-between;
  color: #16a34a;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.05rem;
}
