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

html {
  overflow-x: hidden;
  height: 100%;
}

body {
  overflow-x: hidden;
  min-width: 280px;
  height: 100%;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: #111827;
  background: #f7fafc;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

main {
  overflow-x: hidden;
}

ul {
  list-style: none;
}

:root {
  --color-primary: #e30613;
  --color-primary-dark: #b20510;
  --color-accent: #16a34a;
  --color-bg: #f7fafc;
  --color-surface: #ffffff;
  --color-muted: #6b7280;
  --shadow-soft: 0 20px 45px rgba(15, 23, 42, 0.18);
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --container-width: 1120px;
}

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

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
}

/* Topbar */

.topbar {
  position: relative;
  z-index: 30;
  backdrop-filter: blur(20px);
  background: linear-gradient(
      90deg,
      rgba(227, 6, 19, 0.96),
      rgba(227, 6, 19, 0.96)
    )
    border-box;
  border-bottom: 1px solid rgba(248, 250, 252, 0.2);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 1.5rem;
}

.topbar__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
}

.brand-logo {
  height: 90px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: radial-gradient(circle at 0 0, #ff9f1c, #ff4b1f);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.logo-title {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.logo-subtitle {
  font-size: 0.7rem;
  line-height: 1.25;
  text-transform: uppercase;
  opacity: 0.9;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.nav__list a {
  position: relative;
  color: #fee2e2;
  font-weight: 500;
}

.nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: width 0.2s ease-out;
}

.nav__list a:hover::after,
.nav__list a:focus-visible::after {
  width: 100%;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav__toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #fee2e2;
}

.topbar__cta {
  white-space: nowrap;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.7rem;
  font-size: 0.92rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn--primary {
  background: linear-gradient(135deg, #ff4b1f, #e30613);
  color: #fff;
  box-shadow: 0 18px 40px rgba(185, 28, 28, 0.6);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(185, 28, 28, 0.75);
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

.btn--outline:hover {
  background: rgba(227, 6, 19, 0.04);
}

.btn--whatsapp {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff !important;
  box-shadow: 0 18px 40px rgba(22, 163, 74, 0.55);
}

.btn--whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(22, 101, 52, 0.75);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* Hero slider */

.hero {
  background: #e30613;
  padding: 0;
}

.hero-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  background: #e30613;
  aspect-ratio: 16 / 6;
  min-height: 200px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 999px;
  border: none;
  background: rgba(15, 23, 42, 0.7);
  color: #f9fafb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.9;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.hero-slider__arrow--prev {
  left: 0.5rem;
}

.hero-slider__arrow--next {
  right: 0.5rem;
}

.hero-slider__arrow:hover {
  background: rgba(15, 23, 42, 0.95);
  transform: translateY(-50%) scale(1.03);
  opacity: 1;
}

.hero-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 0.8rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
  padding: 0.4rem;
}

.hero-slider__dots button {
  width: 10px;
  height: 10px;
  min-width: 10px;
  min-height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(248, 250, 252, 0.6);
  cursor: pointer;
  opacity: 0.7;
  transition: background 0.2s ease, width 0.2s ease, opacity 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.hero-slider__dots button.is-active {
  width: 22px;
  background: #facc15;
  opacity: 1;
}

/* Sections base */

.section {
  padding: 4.2rem 0;
}

.section--light {
  background: #fff;
}

.section__header {
  text-align: center;
  margin-bottom: 2.4rem;
}

.section__header h2 {
  font-size: 1.7rem;
  margin-bottom: 0.6rem;
}

.section__header p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--color-muted);
}

.section__inner {
  display: grid;
  gap: 2.4rem;
}

.section__inner--split {
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.2fr);
  align-items: center;
}

.section__content > p {
  color: var(--color-muted);
  margin-bottom: 1.6rem;
}

.section__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* Intro (segunda sessão com frases) */

.intro__content {
  max-width: 760px;
  margin: 0 auto 0 0;
}

.intro__eyebrow {
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  color: var(--color-muted);
  margin-bottom: 0.7rem;
}

.intro__title {
  font-size: clamp(2.1rem, 3vw + 1.2rem, 2.7rem);
  line-height: 1.08;
  margin-bottom: 1rem;
}

.intro__highlight {
  color: #E4101D;
}

.intro__sub {
  font-size: 1rem;
  max-width: 36rem;
  color: var(--color-muted);
  margin-bottom: 1.6rem;
}

.intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.intro__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
}

.badge--light {
  background: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #111827;
}

/* Lists & cards */

.list {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
}

.list--bullet li::before {
  content: "•";
  margin-right: 0.45rem;
  color: var(--color-primary);
}

.list--check li {
  position: relative;
  padding-left: 1.6rem;
}

.list--check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  border: 2px solid var(--color-accent);
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.18);
}

.list--check li::after {
  content: "";
  position: absolute;
  left: 0.24rem;
  top: 0.34rem;
  width: 0.3rem;
  height: 0.5rem;
  border-right: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  transform: rotate(40deg);
}

.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.7rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(227, 6, 19, 0.25);
  border: 1px solid var(--color-primary);
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
}

.card--accent {
  background: radial-gradient(circle at 0 0, #fee2e2, #fecaca);
  border: 1px solid rgba(248, 113, 113, 0.8);
}

/* About */

.about__grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
}

.about__item {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.4rem;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.about__item h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.about__item p,
.about__item li {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.about-banner-card {
  margin-top: 2.2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #fff;
  width: 100%;
}

.about-banner-card img {
  display: block;
  width: 100%;
  height: auto;
}

/* Benefits */

.benefits {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #1d4ed8 100%);
}

.benefits .section__header h2,
.benefits .section__header p {
  color: #fff;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: 1.6rem;
}

/* Plans */

.plans__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 1.7rem;
}

.plan-card {
  background: var(--color-surface);
  border-radius: 1.6rem;
  padding: 1.8rem 1.6rem 1.6rem;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.16);
  border: 1px solid rgba(148, 163, 184, 0.28);
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(227, 6, 19, 0.25);
  border-color: var(--color-primary);
}

.plan-card__tag {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  background: #facc15;
  color: #1f2933;
  font-size: 0.68rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plan-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.plan-card__subtitle {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 0.9rem;
}

.plan-card__price {
  font-weight: 700;
  font-size: 1.7rem;
  margin-bottom: 0.1rem;
}

.plan-card__price--small {
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.plan-card__currency {
  font-size: 0.95rem;
  margin-right: 0.1rem;
}

.plan-card__period {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-muted);
}

.plan-card__hint {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-bottom: 0.9rem;
}

.plans__disclaimer {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--color-muted);
  text-align: center;
}

.details {
  margin: 1rem 0 1.2rem;
  padding-top: 0.3rem;
  border-top: 1px dashed rgba(148, 163, 184, 0.7);
}

.details summary {
  cursor: pointer;
  list-style: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  min-height: 44px;
}

.details summary::after {
  content: "▾";
  font-size: 0.7rem;
}

.details[open] summary::after {
  transform: rotate(180deg);
}

.details ul {
  margin-top: 0.6rem;
}

.details li {
  font-size: 0.84rem;
}

/* Partners */

.partners__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: 1.7rem;
  margin-bottom: 2.2rem;
}

.partners__group {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.3rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.partners__group h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.partners__group li {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.partners__banner {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.partners__banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* Locations */

.locations__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 1.5rem;
}

.location-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.5rem;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
}

.location-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.location-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 0.7rem;
}

.location-card__link {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* Contact */

.contact__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact__col h2 {
  font-size: 1.7rem;
  margin-bottom: 0.6rem;
}

.contact__intro {
  color: var(--color-muted);
  margin-bottom: 1.6rem;
}

.contact__info {
  display: grid;
  gap: 1.4rem;
  margin-bottom: 1.4rem;
}

.contact__item h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.contact__item p,
.contact__item a {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.contact__item a {
  color: var(--color-primary);
  font-weight: 500;
  word-break: break-word;
  overflow-wrap: break-word;
}

.contact__social a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #db2777;
}

.contact__benefits-title {
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact__benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact__benefits-list li {
  padding: 0.6rem 1rem;
  border: 1px solid rgba(227, 6, 19, 0.4);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #374151;
  text-align: center;
}

.contact__banner {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  max-width: 100%;
}

.contact__banner img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

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

  .contact__col--benefits {
    order: -1;
  }
}

/* Footer */

.footer {
  background: #0f172a;
  color: #9ca3af;
  padding: 1.4rem 0;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  font-size: 0.82rem;
}

.footer__brand {
  display: flex;
  align-items: center;
}

.footer-logo {
  height: 52px;
  width: auto;
  display: block;
}

.footer__dev {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  margin: 0.3rem auto 0;
  color: #e5e7eb;
  text-decoration: none;
}

.footer-dev-logo {
  height: 28px;
  width: auto;
  display: block;
}

/* Floating WhatsApp button */

.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.8rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  text-decoration: none;
  z-index: 40;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 24px 55px rgba(22, 101, 52, 0.75);
}

.whatsapp-float__icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: max(1rem, env(safe-area-inset-right));
    bottom: max(1.4rem, env(safe-area-inset-bottom));
    width: 52px;
    height: 52px;
  }
}

.footer__city {
  color: #e5e7eb;
}

/* Responsive */

@media (max-width: 960px) {
  .hero-slider {
    aspect-ratio: 16 / 9;
    min-height: 220px;
  }

  .hero-slide img {
    object-fit: contain;
    object-position: center center;
  }

  .topbar__inner {
    padding-inline: 1rem;
  }

  .brand-logo {
    height: 72px;
    max-height: 72px;
  }

  .nav__toggle {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
  }

  .nav__list {
    position: fixed;
    top: 5.5rem;
    left: 1rem;
    right: 1rem;
    padding: 1rem;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    transform-origin: top;
    transform: scaleY(0.95);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    max-height: calc(100vh - 6rem);
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  }

  .nav--open .nav__list {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
    visibility: visible;
  }

  .nav__list a {
    display: flex;
    align-items: center;
    padding: 0.6rem 0;
    font-size: 1rem;
    min-height: 44px;
    width: 100%;
  }

  .nav--open .nav__toggle span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  .nav--open .nav__toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav--open .nav__toggle span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .topbar__cta {
    display: none;
  }

  .section__inner--split {
    grid-template-columns: minmax(0, 1fr);
  }

  .section__media {
    order: -1;
  }
}

@media (max-width: 640px) {
  .hero-slider {
    aspect-ratio: 16 / 9;
    min-height: 220px;
  }

  .hero-slide img {
    object-fit: contain;
    object-position: center center;
  }

  .hero-slider__arrow--prev {
    left: 0.75rem;
  }

  .hero-slider__arrow--next {
    right: 0.75rem;
  }

  .intro__title {
    font-size: 1.75rem;
  }

  .intro__sub {
    font-size: 0.94rem;
  }

  .section__header h2 {
    font-size: 1.45rem;
  }

  .intro__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .intro__actions .btn {
    justify-content: center;
  }

  .section {
    padding: 3.4rem 0;
  }

  .card,
  .plan-card,
  .about__item {
    padding: 1.4rem 1.3rem;
  }

  .benefits__grid,
  .plans__grid,
  .partners__grid {
    gap: 1.2rem;
  }

  .contact__col h2 {
    font-size: 1.5rem;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    min-height: 48px;
    padding: 0.85rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    aspect-ratio: 16 / 10;
    min-height: 260px;
  }

  .hero-slide img {
    object-fit: contain;
    object-position: center center;
  }

  .brand-logo {
    height: 60px;
    max-height: 60px;
  }

  .intro__title {
    font-size: 1.5rem;
  }

  .section__header h2 {
    font-size: 1.35rem;
  }

  .nav__list {
    top: 5rem;
  }

  .about-banner-card,
  .partners__banner,
  .contact__banner {
    margin-left: -1rem;
    margin-right: -1rem;
    width: calc(100% + 2rem);
    max-width: calc(100% + 2rem);
    border-radius: 0;
  }

  .about-banner-card img,
  .partners__banner img,
  .contact__banner img {
    border-radius: 0;
  }
}

