/* === INÍCIO - VARIÁVEIS E RESET GLOBAL === */
:root {
  --abc-red: #b81d24;
  --abc-red-dark: #8b1318;
  --abc-red-soft: #f7e7e8;
  --abc-gold: #f1f18d;
  --abc-graphite: #252525;
  --abc-text: #2a2a2a;
  --abc-muted: #666666;
  --abc-bg: #fbfbfb;
  --abc-surface: #ffffff;
  --abc-border: rgba(37, 37, 37, 0.08);
  --abc-shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.08);
  --abc-shadow-md: 0 16px 40px rgba(0, 0, 0, 0.12);
  --abc-shadow-lg: 0 28px 60px rgba(0, 0, 0, 0.18);
  --whatsapp-green: #00c88c;
  --whatsapp-dark: #00a676;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --radius-xl: 48px;
  --max-width: 1400px;
  --section-gap: clamp(72px, 8vw, 120px);
  --transition-fast: 180ms ease;
  --transition-base: 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --transition-bounce: 420ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--abc-bg);
}

body {
  color: var(--abc-text);
  background: var(--abc-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition:
    opacity var(--transition-base),
    transform var(--transition-base),
    background var(--transition-base),
    box-shadow var(--transition-base);
}

button {
  font: inherit;
}

.page {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-inline: clamp(16px, 3vw, 28px);
}

::selection {
  background: rgba(184, 29, 36, 0.16);
  color: var(--abc-graphite);
}
/* === FIM - VARIÁVEIS E RESET GLOBAL === */ 
 
/* === INÍCIO - HERO === */
.hero {
  position: relative;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(184, 29, 36, 0.93) 0%, rgba(184, 29, 36, 0.88) 46%, rgba(184, 29, 36, 0.28) 72%, rgba(184, 29, 36, 0.08) 100%),
    url("https://content.app-sources.com/s/557781691746958921/uploads/Images/cover-4715790.webp?format=webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: calc(32% - 50px) center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(37, 37, 37, 0.12), transparent 42%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 32%, rgba(0, 0, 0, 0.14)),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08), transparent 22%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(28px, 5vw, 72px);
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 620px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(184, 29, 36, 0.94), rgba(139, 19, 24, 0.86));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}

.hero-logo-container {
  margin-bottom: clamp(18px, 3vw, 28px);
}

.hero-logo {
  width: clamp(130px, 14vw, 190px);
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.12));
}

.hero-title {
  color: #ffffff;
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.hero-subtitle {
  margin-top: 18px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.6;
  max-width: 40ch;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 14px 26px;
  border-radius: 18px;
  background: linear-gradient(180deg, #00c88c, #00a676);
  box-shadow: 0 16px 32px rgba(0, 168, 118, 0.3);
  transform: translateZ(0);
  will-change: transform, box-shadow;
}

.hero-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 42px rgba(0, 168, 118, 0.36);
  opacity: 1;
}

.hero-button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.35);
  outline-offset: 4px;
}

.btn-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #ffffff;
  gap: 2px;
}

.btn-main {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.btn-sub {
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0.92;
}

@media (max-width: 1180px) {
  .hero {
    background-position: 12% center;
  }

  .hero-content {
    justify-content: center;
  }

  .hero-copy {
    max-width: 680px;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 92svh;
    background-position: 10% center;
  }

  .hero-content {
    padding: 20px 16px 34px;
    align-items: flex-end;
  }

  .hero-copy {
    width: 100%;
    padding: 22px 18px;
    border-radius: 24px;
  }

  .hero-title {
    max-width: none;
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .hero-subtitle {
    max-width: none;
  }

  .hero-button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .hero {
    background-position: 8% center;
  }

  .hero-logo {
    width: 122px;
  }
} 
/* === FIM - HERO === */

/* === INÍCIO - PROVA SOCIAL === */
.proof {
  padding: 26px 0 0;
  background: var(--abc-bg);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: -42px;
  position: relative;
  z-index: 3;
}

.proof-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--abc-border);
  border-radius: 20px;
  padding: 22px 18px;
  box-shadow: var(--abc-shadow-sm);
  text-align: center;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.proof-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--abc-shadow-md);
  border-color: rgba(184, 29, 36, 0.16);
}

.proof-number {
  display: block;
  color: var(--abc-red);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.proof-label {
  display: block;
  margin-top: 8px;
  color: var(--abc-muted);
  font-size: 0.95rem;
  line-height: 1.35;
  font-weight: 600;
}
/* === FIM - PROVA SOCIAL === */

/* === INÍCIO - AMBIENTES === */
.environments {
  padding: var(--section-gap) 0;
  background: linear-gradient(180deg, var(--abc-bg) 0%, #fff 100%);
}

.section-title {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 52px);
}

.section-title h2 {
  color: var(--abc-graphite);
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 900;
  max-width: 16ch;
  margin: 0 auto;
}

.environments-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.env-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--abc-surface);
  border: 1px solid var(--abc-border);
  box-shadow: var(--abc-shadow-sm);
  transform: translateZ(0);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.env-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--abc-shadow-lg);
  border-color: rgba(184, 29, 36, 0.16);
}

.env-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transform: scale(1.001);
  transition:
    transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter var(--transition-base);
}

.env-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.05);
}

.env-card h3 {
  margin: 18px 18px 10px;
  color: var(--abc-graphite);
  font-size: 1.15rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.env-cta {
  display: block;
  margin: 0 18px 18px;
  padding: 13px 14px;
  border-radius: 14px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(180deg, var(--abc-red), var(--abc-red-dark));
  box-shadow: 0 12px 22px rgba(184, 29, 36, 0.22);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    opacity var(--transition-base);
}

.env-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(184, 29, 36, 0.28);
  opacity: 1;
}

.env-cta:focus-visible {
  outline: 3px solid rgba(184, 29, 36, 0.22);
  outline-offset: 3px;
}
/* === FIM - AMBIENTES === */

/* === INÍCIO - GALERIA === */
.environment {
  padding: var(--section-gap) 0;
  background:
    radial-gradient(circle at top, rgba(184, 29, 36, 0.05), transparent 28%),
    #fff;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.gallery-card {
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  background: #f3f3f3;
  box-shadow: var(--abc-shadow-sm);
  border: 1px solid var(--abc-border);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--abc-shadow-md);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter var(--transition-base);
}

.gallery-card:hover img {
  transform: scale(1.08);
  filter: contrast(1.02) saturate(1.06);
}
/* === FIM - GALERIA === */

/* === INÍCIO - ABOUT === */
.about {
  padding: var(--section-gap) 0;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.about-container {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(34px, 5vw, 84px);
  align-items: center;
}

.about-text h2 {
  color: var(--abc-graphite);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.035em;
  margin-bottom: 26px;
  max-width: 15ch;
}

.highlight-dark {
  color: var(--abc-red);
}

.about-text p {
  color: var(--abc-muted);
  font-size: 1.04rem;
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 58ch;
}

.about-text p:last-child {
  margin-bottom: 0;
  color: var(--abc-graphite);
  font-weight: 600;
}

.about-card {
  display: flex;
  justify-content: flex-end;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(
      circle at 20% 15%,
      rgba(255, 255, 255, 0.18),
      transparent 32%
    ),
    linear-gradient(135deg, var(--abc-red) 0%, var(--abc-red-dark) 100%);
  box-shadow: var(--abc-shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-image-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.08) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.08) 75%,
    transparent 75%,
    transparent
  );
  background-size: 12px 12px;
  opacity: 0.22;
  pointer-events: none;
}

.about-image-wrapper img {
  position: absolute;
  left: 50%;
  bottom: -2%;
  width: 112%;
  max-width: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.18));
}
/* === FIM - ABOUT === */

/* === INÍCIO - LOCATION === */
.location {
  margin: var(--section-gap) 0 40px;
  background: linear-gradient(
    135deg,
    var(--abc-red) 0%,
    var(--abc-red-dark) 100%
  );
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--abc-shadow-lg);
}

.location::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.06) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.06) 50%,
    rgba(255, 255, 255, 0.06) 75%,
    transparent 75%,
    transparent
  );
  background-size: 10px 10px;
  opacity: 0.32;
  pointer-events: none;
}

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(26px, 5vw, 70px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.location-copy h3 {
  color: #fff;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.location-copy p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 46ch;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.location-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  transition:
    transform var(--transition-base),
    background var(--transition-base),
    box-shadow var(--transition-base);
}

.location-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.12);
  opacity: 1;
}

.location-image {
  width: 100%;
  min-height: 360px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(37, 37, 37, 0.08), rgba(37, 37, 37, 0.18)),
    url("https://content.app-sources.com/s/557781691746958921/uploads/Images/locao-4719721.webp?format=webp")
      center center / cover no-repeat;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}
/* === FIM - LOCATION === */

/* === INÍCIO - SCROLL TOP === */
.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--abc-graphite);
  color: #fff;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.95);
  transition:
    opacity var(--transition-base),
    visibility var(--transition-base),
    transform var(--transition-base),
    background var(--transition-base),
    box-shadow var(--transition-base);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-top:hover {
  background: var(--abc-red);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 34px rgba(184, 29, 36, 0.28);
}

.scroll-top svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  transition: transform var(--transition-base);
}

.scroll-top:hover svg {
  transform: translateY(-2px);
}

.scroll-top:focus-visible {
  outline: 3px solid rgba(184, 29, 36, 0.22);
  outline-offset: 4px;
}
/* === FIM - SCROLL TOP === */

/* === INÍCIO - RESPONSIVIDADE === */
@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-content {
    min-height: auto;
    padding-block: 72px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .proof-grid,
  .environments-grid,
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-container,
  .location-inner {
    grid-template-columns: 1fr;
  }

  .about-card {
    justify-content: center;
  }

  .location-copy p {
    max-width: 100%;
  }

  .location-image {
    min-height: 320px;
  }
}

@media (max-width: 720px) {
  .page {
    padding-inline: 16px;
  }

  .hero-content {
    padding: 28px 16px 40px;
  }

  .hero-title {
    max-width: none;
  }

  .hero-subtitle {
    max-width: none;
  }

  .hero-button {
    width: 100%;
  }

  .proof-grid,
  .environments-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .proof {
    padding-top: 18px;
  }

  .proof-grid {
    margin-top: -18px;
  }

  .proof-card,
  .env-card,
  .gallery-card {
    border-radius: 18px;
  }

  .env-card img {
    height: 220px;
  }

  .section-title h2 {
    max-width: none;
  }

  .about-text h2 {
    max-width: none;
  }

  .location {
    border-radius: 28px;
    margin-bottom: 24px;
  }

  .location-inner {
    padding: 24px 18px;
  }

  .location-actions {
    flex-direction: column;
  }

  .location-btn {
    width: 100%;
  }

  .location-image {
    min-height: 240px;
    border-radius: 22px;
  }

  .scroll-top {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: clamp(1.9rem, 10vw, 2.4rem);
  }

  .section-title h2 {
    font-size: clamp(1.55rem, 8vw, 2rem);
  }

  .location-copy h3 {
    font-size: clamp(1.8rem, 8vw, 2.2rem);
  }

  .hero-logo {
    width: 128px;
  }
}
/* === FIM - RESPONSIVIDADE === */

/* === INÍCIO - ACESSIBILIDADE E PERFORMANCE === */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* === FIM - ACESSIBILIDADE E PERFORMANCE === */
.back-home-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(10, 14, 39, 0.88);
  border: 1px solid rgba(0, 212, 212, 0.35);
  color: #eaf0f7;
  text-decoration: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.back-home-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 212, 212, 0.7);
  background: rgba(10, 14, 39, 0.96);
  box-shadow: 0 18px 40px rgba(0, 212, 212, 0.12), 0 14px 34px rgba(0, 0, 0, 0.28);
}

.back-home-btn:focus-visible {
  outline: 3px solid rgba(0, 212, 212, 0.55);
  outline-offset: 4px;
}

.back-home-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(0, 212, 212, 0.12);
  color: #00d4d4;
  font-size: 1rem;
  line-height: 1;
}

.back-home-btn__text {
  white-space: nowrap;
}

/* Mobile */
@media (max-width: 640px) {
  .back-home-btn {
    right: 14px;
    bottom: 14px;
    padding: 11px 13px;
    gap: 8px;
    font-size: 0.88rem;
  }

  .back-home-btn__text {
    display: none;
  }

  .back-home-btn__icon {
    width: 30px;
    height: 30px;
  }
}