/* ============================================================
   PROPRELETTE — Premium Stylesheet
   ============================================================ */

/* ── Font Faces ─────────────────────────────────────────────── */
@font-face {
  font-family: 'Clagio';
  src: url('../assets/fonts/Clagio-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Clagio';
  src: url('../assets/fonts/Clagio-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Clagio';
  src: url('../assets/fonts/Clagio-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Clagio';
  src: url('../assets/fonts/Clagio-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Clagio';
  src: url('../assets/fonts/Clagio-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Clagio';
  src: url('../assets/fonts/Clagio-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Clagio';
  src: url('../assets/fonts/Clagio-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
  --red: #8d0100;
  --red-dark: #6e0000;
  --cream: #edebde;
  --dark: #373737;
  --gray: #888888;
  --black: #161616;
  --white: #ffffff;

  --clagio: 'Clagio', Georgia, serif;
  --montserrat: 'Montserrat', Arial, sans-serif;
  --inter: 'Inter', Arial, sans-serif;

  --radius-sm: 8px;
  --radius-md: 11px;
  --radius-lg: 15px;
  --radius-xl: 16px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 0.25s ease;
  --t-base: 0.4s var(--ease-out);
  --t-slow: 0.7s var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--montserrat);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.5;
}

body.no-scroll {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ── Container ──────────────────────────────────────────────── */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 192px;
}

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s var(--ease-out), visibility 0.7s var(--ease-out);
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader__logo {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.8) translateY(10px);
  animation: preloaderReveal 0.9s var(--ease-out) 0.4s forwards;
}

.preloader__logo img,
.preloader__logo svg {
  width: 220px;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(237, 235, 222, 0.15));
}

.preloader__sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
      transparent 30%,
      rgba(255, 255, 255, 0.18) 50%,
      transparent 70%);
  transform: translateX(-200%);
  animation: sheen 1.2s ease 1s forwards;
}

@keyframes preloaderReveal {
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes sheen {
  to {
    transform: translateX(300%);
  }
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 30px 0;
  transition: padding var(--t-base), background var(--t-base),
    backdrop-filter var(--t-base), box-shadow var(--t-base);
}

.header.scrolled {
  padding: 18px 0;
  background: rgba(15, 12, 12, 0.88);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 1px 40px rgba(0, 0, 0, 0.25);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo img {
  height: 28px;
  width: auto;
  transition: opacity var(--t-fast);
}

.header__logo:hover img {
  opacity: 0.8;
}

.header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 6px;
}

.header__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast), width var(--t-fast);
  transform-origin: center;
}

.header__hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.header__hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ============================================================
   NAV DROPDOWN (menu hamburger compacto)
   ============================================================ */
.nav-dropdown {
  position: fixed;
  top: 72px;
  right: 24px;
  z-index: 200;
  background: rgba(18, 13, 13, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(237, 235, 222, 0.1);
  border-radius: 14px;
  padding: 8px 0;
  min-width: 200px;
  transform-origin: top right;
  transform: scale(0.9) translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.28s var(--ease-out), opacity 0.28s ease, visibility 0.28s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.nav-dropdown.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav-dropdown__link {
  display: block;
  font-family: var(--clagio);
  font-weight: 600;
  font-size: 16px;
  color: rgba(237, 235, 222, 0.85);
  padding: 12px 24px;
  letter-spacing: -0.2px;
  transition: color var(--t-fast), background var(--t-fast), padding-left var(--t-fast);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out),
    color var(--t-fast), background var(--t-fast);
}

.nav-dropdown.open .nav-dropdown__link {
  opacity: 1;
  transform: translateX(0);
}

.nav-dropdown.open .nav-dropdown__link:nth-child(1) {
  transition-delay: 0.04s;
}

.nav-dropdown.open .nav-dropdown__link:nth-child(2) {
  transition-delay: 0.08s;
}

.nav-dropdown.open .nav-dropdown__link:nth-child(3) {
  transition-delay: 0.12s;
}

.nav-dropdown.open .nav-dropdown__link:nth-child(4) {
  transition-delay: 0.16s;
}

.nav-dropdown__link:hover {
  color: var(--cream);
  background: rgba(237, 235, 222, 0.06);
  padding-left: 30px;
}

/* Separador sutil entre links */
.nav-dropdown__link+.nav-dropdown__link {
  border-top: 1px solid rgba(237, 235, 222, 0.06);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 802px;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__img-wrap {
  position: absolute;
  inset: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 20% 85%;
  transform: scale(1.15);
  transform-origin: 20% center;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(205deg,
      rgba(55, 55, 55, 0.6) 0%,
      rgba(55, 55, 55, 0.18) 40%,
      rgba(55, 55, 55, 0) 75%);
}

.hero__content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-bottom: 78px;
}

.hero__text {
  max-width: 620px;
  text-align: right;
}

.hero__title {
  font-family: var(--clagio);
  font-size: clamp(34px, 3.33vw, 48px);
  line-height: 1.079;
  color: var(--cream);
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
}

.hero__anim {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(7px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out), filter 0.85s var(--ease-out);
  will-change: transform, filter;
}

.hero__anim.animated {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.hero__w--light {
  font-weight: 400;
  letter-spacing: -0.32px;
}

.hero__w--bold {
  font-weight: 800;
  letter-spacing: -0.48px;
}

.hero__subtitle {
  font-family: var(--montserrat);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.48px;
  color: var(--cream);
  margin-bottom: 28px;
}

.hero__subtitle strong {
  font-weight: 600;
}

.hero__cta-wrap {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s var(--ease-out) 0.5s, transform 0.6s var(--ease-spring) 0.5s;
}

.hero__cta-wrap.animated {
  opacity: 1;
  transform: scale(1);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--clagio);
  font-weight: 900;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: -0.32px;
  line-height: 1;
  border-radius: var(--radius-lg);
  padding: 7px 22px;
  height: 32px;
  transition: transform var(--t-fast), background var(--t-fast),
    color var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
}

.btn--outline {
  font-family: var(--montserrat);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 1.92px;
  text-transform: uppercase;
  border: 1px solid var(--cream);
  color: var(--cream);
  background: transparent;
  min-width: 222px;
  height: 32px;
}

.btn--outline:hover {
  background: rgba(237, 235, 222, 0.12);
  transform: scale(1.03);
  box-shadow: 0 4px 24px rgba(237, 235, 222, 0.15);
}

.btn--red {
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 18px;
  height: auto;
  padding: 16px 28px;
  width: 100%;
  letter-spacing: 0.5px;
  transition: transform var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}

.btn--red:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(141, 1, 0, 0.3);
}

.btn--red:disabled {
  opacity: 0.6;
  pointer-events: none;
}


/* ============================================================
   STATS SECTION
   ============================================================ */
.stats {
  padding: 0 0 113px;
}

.stats__heading {
  font-family: var(--clagio);
  font-weight: 600;
  font-size: clamp(32px, 3.33vw, 48px);
  line-height: 1.079;
  letter-spacing: -0.96px;
  color: var(--black);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 18px;
}

.stats__subheading {
  font-family: var(--montserrat);
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  text-align: center;
  letter-spacing: -0.32px;
  line-height: 1.079;
  margin-bottom: 48px;
}

/* Bento grid */
.stats__bento {
  display: grid;
  grid-template-columns: 430fr 289fr 289fr;
  gap: 16px;
  height: 448px;
}

.stats__bento-main {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  grid-row: 1;
}

.stats__bento-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stats__bento-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
  will-change: transform;
}

.stats__bento-main .stats__bento-img {
  object-position: 75% center;
}

.stats__bento-main:hover .stats__bento-img,
.stats__bento-photo:hover .stats__bento-img {
  transform: scale(1.05);
}

.stats__bento-overlay {
  position: absolute;
  inset: 0;
}

.stats__bento-overlay--left {
  background: linear-gradient(211deg, rgba(141, 1, 0, 0) 48%, rgba(141, 1, 0, 0.95) 88%);
}

.stats__bento-overlay--bottom {
  background: linear-gradient(195deg, rgba(141, 1, 0, 0) 55%, rgba(141, 1, 0, 0.95) 95%);
}

.stats__bento-stat {
  position: absolute;
  bottom: 22px;
  left: 24px;
  color: var(--cream);
}

.stats__bento-num {
  display: block;
  font-family: var(--clagio);
  font-weight: 600;
  font-size: 36px;
  line-height: 1.079;
  letter-spacing: -1.08px;
}

.stats__bento-desc {
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: -0.39px;
  max-width: 220px;
  opacity: 0.92;
}

.stats__bento-card {
  background: linear-gradient(239deg, #8d0100 14%, #710100 100%);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--cream);
  flex-shrink: 0;
  height: 130px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.stats__bento-card:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(141, 1, 0, 0.4);
}

.stats__bento-photo {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex: 1;
}

.stats__bento-photo--flex2 {
  flex: 2;
}

/* ============================================================
   CREAM WRAPPER (engloba Conceito + Stats)
   ============================================================ */
.cream-wrapper {
  background: var(--cream);
  border-radius: 11px;
  overflow: hidden;
}

/* ============================================================
   CONCEITO
   ============================================================ */
.concept {
  padding: 106px 0 116px;
}

.concept__layout {
  display: grid;
  grid-template-columns: 1fr 521px;
  gap: 64px;
  align-items: center;
  min-height: 492px;
}

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

.section-label {
  font-family: var(--montserrat);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 12.6px;
  color: var(--black);
  display: block;
  margin-bottom: 52px;
}

.section-label--light {
  color: var(--cream);
}

.concept__title {
  font-family: var(--clagio);
  font-weight: 600;
  font-size: clamp(34px, 3.33vw, 48px);
  line-height: 1.079;
  letter-spacing: -0.96px;
  color: var(--black);
  margin-bottom: 32px;
}

.concept__body {
  font-family: var(--montserrat);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.32px;
  color: var(--black);
  margin-bottom: 14px;
}

.concept__body:last-child {
  margin-bottom: 0;
}

.concept__image {
  overflow: hidden;
  border-radius: var(--radius-md);
  height: 492px;
  position: relative;
}

.concept__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s var(--ease-out);
  will-change: transform;
}

.concept__image:hover .concept__img {
  transform: scale(1.04);
}

/* ============================================================
   CONTATO CTA
   ============================================================ */
.contact-cta {
  position: relative;
  min-height: 570px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-cta__bg {
  position: absolute;
  inset: 0;
}

.contact-cta__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s var(--ease-out), filter 0.8s var(--ease-out);
  will-change: transform, filter;
}

.contact-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(205deg,
      rgba(55, 55, 55, 0.92) 0%,
      rgba(55, 55, 55, 0.58) 32%,
      rgba(55, 55, 55, 0.25) 86%);
}

.contact-cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 24px;
  max-width: 760px;
}

.contact-cta__title {
  font-family: var(--clagio);
  font-weight: 600;
  font-size: clamp(28px, 3.33vw, 48px);
  line-height: 1.079;
  letter-spacing: -0.96px;
  color: var(--cream);
  margin-bottom: 44px;
}

.contact-cta__btn {
  font-family: var(--clagio);
  font-weight: 700;
  font-size: clamp(15px, 1.4vw, 20px);
  color: var(--cream);
  background: var(--red);
  border-radius: var(--radius-md);
  padding: 16px 40px;
  height: auto;
  letter-spacing: -0.4px;
  line-height: 1.3;
  text-align: center;
  transition: transform var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}

.contact-cta__btn:hover {
  background: var(--red-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 40px rgba(141, 1, 0, 0.4);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  padding: 44px 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer__logo {
  height: 52px;
  width: auto;
}

.footer__eco {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(237, 235, 222, 0.4);
}

.footer__eco svg {
  flex-shrink: 0;
}

.footer__eco span {
  font-family: var(--montserrat);
  font-size: 10px;
  letter-spacing: 0.4px;
}

.footer__copy {
  font-size: 11px;
  color: rgba(237, 235, 222, 0.22);
  text-align: center;
  letter-spacing: 0.3px;
}

/* ============================================================
   MODAL DE CONTATO
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-out), visibility 0.35s var(--ease-out);
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 5, 5, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal__container {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 40px 40px;
  width: min(620px, 100%);
  max-height: calc(100svh - 40px);
  overflow-y: auto;
  transform: scale(0.9) translateY(24px);
  transition: transform 0.45s var(--ease-out);
  scrollbar-width: thin;
}

.modal.open .modal__container {
  transform: scale(1) translateY(0);
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.modal__logo img {
  height: 22px;
  width: auto;
  filter: invert(1);
}

.modal__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  border-radius: 50%;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}

.modal__close:hover {
  background: #f2f2f2;
  color: var(--black);
  transform: rotate(90deg);
}

.modal__title {
  font-family: var(--clagio);
  font-weight: 700;
  font-size: 26px;
  color: var(--black);
  margin-bottom: 8px;
}

.modal__subtitle {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* ── Formulário ───────────────────────────────────────────── */
.modal__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-input {
  font-family: var(--montserrat);
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  border: 1px solid #d4d4d4;
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  width: 100%;
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.form-input::placeholder {
  color: #aaa;
}

.form-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(141, 1, 0, 0.08);
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.form-checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  margin-top: 4px;
}

.form-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.form-checkbox__box {
  width: 20px;
  min-width: 20px;
  height: 20px;
  border: 1.5px solid #d1d1d1;
  border-radius: 4px;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast), border-color var(--t-fast);
  margin-top: 1px;
}

.form-checkbox__box::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid transparent;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: border-color var(--t-fast);
}

.form-checkbox input:checked~.form-checkbox__box {
  background: var(--red);
  border-color: var(--red);
}

.form-checkbox input:checked~.form-checkbox__box::after {
  border-color: var(--white);
}

.form-checkbox__label {
  font-family: var(--inter);
  font-size: 13px;
  color: var(--gray);
  line-height: 1.55;
}

.form-submit {
  margin-top: 6px;
}

/* ── Success state ──────────────────────────────────────── */
.modal--success .modal__form {
  display: none;
}

.modal__success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 0;
  gap: 16px;
}

.modal--success .modal__success {
  display: flex;
}

.modal__success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(141, 1, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 28px;
}

.modal__success h4 {
  font-family: var(--clagio);
  font-weight: 700;
  font-size: 22px;
}

.modal__success p {
  font-size: 14px;
  color: var(--gray);
  max-width: 320px;
  line-height: 1.6;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
[data-animate] {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity var(--t-slow), transform var(--t-slow);
}

[data-animate="fade-up"] {
  transform: translateY(44px);
}

[data-animate="fade-left"] {
  transform: translateX(44px);
}

[data-animate="fade-right"] {
  transform: translateX(-44px);
}

[data-animate="scale-in"] {
  transform: scale(0.88);
}

[data-animate].animated {
  opacity: 1;
  transform: none;
}

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

/* Notebook 1280px */
@media (max-width: 1280px) {
  .container {
    padding: 0 80px;
  }

  .concept__layout {
    grid-template-columns: 1fr 420px;
    gap: 48px;
  }
}

/* Tablet 1024px */
@media (max-width: 1024px) {
  .container {
    padding: 0 48px;
  }

  .concept {
    padding: 64px 0;
  }

  .concept__layout {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
  }

  .concept__image {
    height: 400px;
    order: -1;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }

  .concept__text {
    padding: 44px 0 0;
  }

  .stats__bento {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  .stats__bento-main {
    height: 360px;
  }

  .stats__bento-col:last-child {
    grid-column: 1 / -1;
    flex-direction: row;
  }

  .stats__bento-photo--flex2 {
    flex: 1;
  }

  .stats__bento-card {
    height: 160px;
  }
}

/* Tablet / Mobile 768px */
@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }

  /* ── Header ── */
  .header {
    padding: 20px 0;
  }

  .header__inner {
    padding: 0 24px;
  }

  /* ── Hero ── */
  .hero { height: auto; min-height: 100svh; }
  .hero__content {
    min-height: 100svh;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 100px 40px 80px 24px;
    text-align: right;
  }
  .hero__text { max-width: 100%; text-align: right; }

  .hero__title {
    font-size: clamp(28px, 7vw, 40px);
    margin-bottom: 16px;
  }

  .hero__subtitle {
    font-size: 14px;
    letter-spacing: -0.3px;
    margin-bottom: 24px;
  }

  .btn--outline {
    min-width: 0;
    width: auto;
  }

  /* ── Cream wrapper ── */
  .cream-wrapper {
    border-radius: 8px;
  }

  /* ── Conceito ── */
  .concept {
    padding: 0 0 48px;
  }

  .concept__layout {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
  }

  .concept__image {
    height: 280px;
    order: -1;
    border-radius: 8px 8px 0 0;
  }

  .concept__text {
    padding: 32px 0 0;
  }

  .concept__title {
    font-size: clamp(26px, 6vw, 36px);
    margin-bottom: 20px;
  }

  .concept__body {
    font-size: 15px;
  }

  .section-label {
    font-size: 11px;
    letter-spacing: 6px;
    margin-bottom: 28px;
  }

  /* ── Stats ── */
  .stats {
    padding: 0 0 56px;
  }

  .stats__heading {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 12px;
  }

  .stats__subheading {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .stats__bento {
    grid-template-columns: 1fr;
    height: auto;
    gap: 12px;
  }

  .stats__bento-main {
    height: 320px;
  }

  .stats__bento-col {
    gap: 12px;
  }

  .stats__bento-col:last-child {
    flex-direction: column;
  }

  .stats__bento-photo {
    min-height: 220px;
  }

  .stats__bento-photo--flex2 {
    min-height: 260px;
    flex: unset;
  }

  .stats__bento-card {
    height: 130px;
  }

  .stats__bento-num {
    font-size: 30px;
  }

  .stats__bento-desc {
    font-size: 12px;
  }

  /* ── Contato CTA ── */
  .contact-cta {
    min-height: 440px;
  }

  .contact-cta__inner {
    padding: 60px 24px;
  }

  .contact-cta__title {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 32px;
  }

  .contact-cta__btn {
    font-size: 16px;
    padding: 14px 28px;
  }

  .section-label--light {
    font-size: 11px;
    letter-spacing: 6px;
  }

  /* ── Footer ── */
  .footer {
    padding: 36px 0;
  }

  .footer__logo {
    height: 40px;
  }

  /* ── Modal ── */
  .modal__container {
    padding: 24px 20px 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* Mobile 480px */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .header__inner {
    padding: 0 16px;
  }

  .nav-dropdown {
    right: 12px;
    min-width: 172px;
  }

  .hero__title {
    font-size: clamp(26px, 8vw, 36px);
  }

  .hero__content { padding: 88px 24px 64px 16px; }

  .hero__subtitle {
    font-size: 13px;
  }

  .concept__image {
    height: 240px;
  }

  .concept__title {
    font-size: clamp(24px, 7vw, 32px);
  }

  .stats__bento-main {
    height: 280px;
  }

  .stats__bento-photo {
    min-height: 190px;
  }

  .stats__bento-photo--flex2 {
    min-height: 220px;
  }

  .contact-cta__btn {
    width: 100%;
    font-size: 15px;
    padding: 14px 20px;
  }

  .contact-cta__inner {
    padding: 48px 16px;
  }

  .preloader__logo img {
    width: 180px;
  }
}