:root {
  /* Core Palette */
  --ink: #1a1210;
  --coffee: #2a1a14;
  --bronze: #b9783d;
  --bronze-light: #d4a373;
  --bronze-dark: #80522f;
  --cream: #fff5ec;
  --sand: #f3dfcf;
  --rose: #ff22b8;
  --sun: #ffe100;
  --leaf: #276455;
  --white: #ffffff;
  --muted: #6d5d55;
  
  /* Glassmorphism & Effects */
  --glass-bg: rgba(255, 245, 236, 0.7);
  --glass-border: rgba(42, 26, 20, 0.08);
  --glass-blur: blur(12px);
  --shadow-sm: 0 4px 12px rgba(42, 26, 20, 0.06);
  --shadow-md: 0 12px 34px rgba(42, 26, 20, 0.12);
  --shadow-lg: 0 20px 60px rgba(42, 26, 20, 0.18);
  
  /* Gradients */
  --grad-bronze: linear-gradient(135deg, var(--bronze) 0%, var(--bronze-dark) 100%);
  --grad-rose: linear-gradient(135deg, var(--rose) 0%, #d41896 100%);
  --grad-sun: linear-gradient(135deg, var(--sun) 0%, #ffcc00 100%);
  
  /* Spacing & Radii */
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  background: var(--ink);
  color: var(--white);
  left: 1rem;
  padding: 0.7rem 1rem;
  position: fixed;
  top: -5rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  margin: 0 auto;
  max-width: var(--container);
  padding: 0 24px;
  width: 100%;
}

.site-header {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid transparent;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
}

.site-header.is-scrolled {
  background: rgba(255, 245, 236, 0.95);
  border-color: var(--glass-border);
  box-shadow: var(--shadow-sm);
  padding: 4px 0;
}

.header-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  gap: 12px;
  letter-spacing: 0;
}

.brand img {
  height: 46px;
  width: 46px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 22px;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  color: var(--coffee);
}

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

.nav-cta {
  background: var(--ink);
  border-radius: var(--radius);
  color: var(--white) !important;
  padding: 0.72rem 1rem;
}

.nav-toggle {
  align-items: center;
  background: var(--ink);
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  display: none;
  flex-direction: column;
  gap: 4px;
  height: 42px;
  justify-content: center;
  padding: 0;
  width: 46px;
}

.nav-toggle span {
  background: var(--white);
  display: block;
  height: 2px;
  width: 18px;
}

.hero {
  align-items: center;
  color: var(--white);
  display: grid;
  min-height: 760px;
  overflow: hidden;
  padding: 140px 0 70px;
  position: relative;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(22, 13, 8, 0.94) 0%, rgba(22, 13, 8, 0.78) 34%, rgba(22, 13, 8, 0.3) 70%, rgba(22, 13, 8, 0.22) 100%),
    url("assets/hero-real-machines.jpeg") center center / cover no-repeat;
  inset: 0;
  position: absolute;
}

.hero-content {
  max-width: 100%;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 0.9rem;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  font-size: clamp(2.25rem, 5vw, 5.4rem);
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
  max-width: 850px;
  overflow-wrap: break-word;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
  margin: 1.4rem 0 0;
  max-width: 620px;
}

.hero-actions,
.benefit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2rem;
}

.button {
  align-items: center;
  border-radius: var(--radius);
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.2rem;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--grad-rose);
  box-shadow: 0 8px 24px rgba(255, 34, 184, 0.25);
  color: var(--white);
  border: none;
}

.button-primary:hover {
  box-shadow: 0 12px 32px rgba(255, 34, 184, 0.4);
  transform: translateY(-3px) scale(1.02);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.plans-section .button-secondary,
.cta-panel .button-secondary,
.benefits-section .button-secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2.5rem;
  max-width: 780px;
}

.hero-proof span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 0.52rem 0.82rem;
}

.section {
  padding: 92px 0;
}

.trust-band {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.trust-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid article {
  border-left: 3px solid var(--sun);
  min-width: 0;
  padding-left: 16px;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  font-size: 1rem;
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.split-section {
  background: var(--cream);
}

.split-grid,
.benefits-grid,
.info-grid,
.cta-panel {
  display: grid;
  gap: 48px;
  grid-template-columns: 0.9fr 1.1fr;
}

.section h2 {
  font-size: clamp(2rem, 3.6vw, 4rem);
  line-height: 1.03;
}

.text-column p,
.section-heading p,
.benefits-copy p,
.cta-panel p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
}

.text-column {
  display: grid;
  gap: 18px;
}

.method-section,
.benefits-section {
  background: var(--coffee);
  color: var(--white);
}

.section-heading {
  margin-bottom: 42px;
  max-width: 760px;
}

.section-heading-wide {
  max-width: 920px;
}

.section-heading p,
.benefits-copy p,
.cta-panel p {
  margin-top: 1rem;
}

.method-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.method-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 28px;
}

.method-card span,
.benefit-list span {
  align-items: center;
  background: var(--sun);
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font-weight: 950;
  height: 44px;
  justify-content: center;
  margin-bottom: 18px;
  width: 44px;
}

.method-card h3,
.plan-card h3,
.addons h3,
.benefit-list h3,
.info-cards h3 {
  font-size: 1.35rem;
  line-height: 1.15;
  margin: 0 0 0.7rem;
}

.method-card p,
.benefit-list p {
  color: rgba(255, 255, 255, 0.74);
  margin: 0;
}

.plans-section {
  background: var(--sand);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-button {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 900;
  padding: 0.72rem 1rem;
}

.filter-button.is-active {
  background: var(--ink);
  color: var(--white);
}

.plans-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.plan-card {
  background: var(--white);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  min-height: 380px;
  min-width: 0;
  padding: 32px;
  transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

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

.plan-card.featured {
  border: 2px solid var(--rose);
  box-shadow: 0 20px 50px rgba(255, 34, 184, 0.15);
}

.plan-card.featured::before {
  content: "MAIS PROCURADO";
  position: absolute;
  top: 12px;
  right: -35px;
  background: var(--rose);
  color: white;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 4px 40px;
  transform: rotate(45deg);
}

.plan-topline {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.plan-topline span {
  background: rgba(39, 100, 85, 0.1);
  border-radius: 999px;
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0.42rem 0.62rem;
  text-transform: uppercase;
}

.plan-topline strong {
  color: var(--rose);
  font-size: 1.55rem;
}

.plan-card p {
  color: var(--muted);
  margin: 0;
}

.plan-card ul,
.addons ul {
  color: var(--coffee);
  display: grid;
  gap: 8px;
  margin: 1.2rem 0 1.4rem;
  padding-left: 1.2rem;
}

.text-link {
  color: var(--rose);
  font-weight: 950;
  margin-top: auto;
}

.addons {
  align-items: start;
  background: var(--ink);
  border-radius: var(--radius);
  color: var(--white);
  display: grid;
  gap: 24px;
  grid-template-columns: 0.9fr 1.1fr;
  margin-top: 22px;
  padding: 28px;
}

.addons ul {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.benefits-section .eyebrow,
.method-section .eyebrow {
  color: var(--sun);
}

.benefits-copy h2,
.method-section h2 {
  color: var(--white);
}

.benefits-copy p,
.method-section .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.benefit-list {
  display: grid;
  gap: 16px;
}

.benefit-list article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  padding: 24px;
}

.benefit-list span {
  width: auto;
  min-width: 44px;
  padding: 0 12px;
}

.info-section,
.faq-section {
  background: var(--cream);
}

.info-cards {
  display: grid;
  gap: 16px;
}

.info-cards article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 0;
  padding: 22px;
}

.info-cards p {
  color: var(--muted);
  margin: 0;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.faq-list summary {
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 950;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  color: var(--rose);
  content: "+";
  float: right;
  font-size: 1.4rem;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  color: var(--muted);
  margin: 0.8rem 0 0;
  max-width: 820px;
}

.cta-section {
  background: var(--white);
}

.cta-panel {
  align-items: center;
  background: var(--grad-bronze);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  color: var(--white);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.cta-panel::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,225,0,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-panel .eyebrow {
  color: var(--sun);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.9);
}

.map-section {
  background: var(--cream);
}

.map-grid {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: 0.78fr 1.22fr;
}

.map-grid p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 1rem 0 1.4rem;
}

.map-button {
  border-color: var(--line);
  color: var(--ink);
}

.map-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 360px;
  overflow: hidden;
}

.map-frame iframe {
  border: 0;
  display: block;
  height: 420px;
  width: 100%;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
  padding: 48px 0 82px;
}

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

.footer-logo {
  background: var(--white);
  border-radius: var(--radius);
  height: 58px;
  margin-bottom: 12px;
  width: 58px;
}

.site-footer h2 {
  color: var(--white);
  font-size: 1rem;
  margin: 0 0 0.8rem;
}

.site-footer p,
.site-footer span,
.site-footer a {
  display: block;
  margin: 0 0 0.65rem;
  overflow-wrap: anywhere;
}

.site-footer a:hover {
  color: var(--sun);
}

.footer-credit {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.78rem;
  margin-top: 26px;
  padding-top: 18px;
  text-align: center;
}

.floating-actions {
  position: fixed;
  bottom: 20px;
  left: 16px;
  right: 16px;
  display: flex;
  gap: 12px;
  z-index: 1000;
  pointer-events: none; /* Allow clicks to pass through container if needed, but buttons will have pointer-events: auto */
}

.floating-actions .floating-cta {
  flex: 1;
  pointer-events: auto;
  border-radius: var(--radius);
  min-height: 54px;
  font-weight: 950;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  gap: 8px; /* Added gap for icons */
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0 12px;
}

.floating-actions .floating-cta svg {
  flex-shrink: 0;
}

.floating-actions .cta-whatsapp {
  background: var(--grad-rose);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(255, 34, 184, 0.3);
}

.floating-actions .cta-maps {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(26, 18, 16, 0.3);
}

.floating-actions .floating-cta:active {
  transform: scale(0.96) translateY(2px);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .floating-actions {
    left: auto;
    right: 32px;
    bottom: 32px;
    width: auto;
    flex-direction: column;
    gap: 10px;
  }
  
  .floating-actions .floating-cta {
    min-width: 180px;
    flex: none;
    border-radius: var(--radius-sm);
  }
}

/* Animations Class System */
.reveal {
  opacity: 1;
  transform: translateY(0);
}

.reveal-enabled .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 800ms cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-enabled .reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 150ms; }
.delay-2 { transition-delay: 300ms; }
.delay-3 { transition-delay: 450ms; }

.legal-page {
  background: var(--cream);
}

.legal-hero {
  background: var(--ink);
  color: var(--white);
  padding: 140px 0 58px;
}

.legal-content {
  padding: 58px 0 86px;
}

.legal-content article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 0 auto;
  max-width: 920px;
  padding: 34px;
}

.legal-content h2 {
  font-size: 1.45rem;
  margin: 2rem 0 0.75rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content a {
  color: var(--rose);
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-nav {
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    gap: 0;
    left: 0;
    padding: 12px 24px 18px;
    position: absolute;
    right: 0;
    top: 76px;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 0.8rem 0;
  }

  .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: 720px;
  }

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

  .split-grid,
  .benefits-grid,
  .info-grid,
  .map-grid,
  .cta-panel,
  .addons {
    grid-template-columns: 1fr;
  }

  .method-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    padding: 0 18px;
  }

  .brand span {
    max-width: 135px;
  }

  .hero {
    min-height: 700px;
    padding-top: 118px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(22, 13, 8, 0.78) 0%, rgba(22, 13, 8, 0.76) 38%, rgba(22, 13, 8, 0.9) 100%),
      url("assets/hero-real-machines.jpeg") center center / cover no-repeat;
  }

  .hero h1,
  .section h2 {
    font-size: 2.16rem;
  }

  .hero-copy,
  .trust-grid span,
  .plan-card p,
  .plan-card li,
  .info-cards p,
  .faq-list p {
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .benefit-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .trust-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 66px 0;
  }

  .plan-card {
    min-height: auto;
  }

  .cta-panel,
  .legal-content article {
    padding: 24px;
  }

  .map-frame {
    min-height: 300px;
  }

  .map-frame iframe {
    height: 320px;
  }

  .site-footer {
    padding-bottom: 94px;
  }

  .floating-cta {
    display: block;
  }
}
