/* =============================================
   CONDESPORTES – LANDING PAGE STYLES
   Paleta: Azul Marinho + Verde Lima + Branco
   ============================================= */

/* ---- RESET & BASE ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:       hsl(218, 72%, 20%);
  --navy-mid:   hsl(218, 65%, 28%);
  --navy-light: hsl(218, 55%, 38%);
  --green:      hsl(100, 72%, 42%);
  --green-dark: hsl(100, 65%, 32%);
  --green-lite: hsl(100, 68%, 55%);
  --white:      hsl(0, 0%, 100%);
  --off-white:  hsl(210, 20%, 97%);
  --text:       hsl(218, 30%, 18%);
  --text-muted: hsl(218, 20%, 45%);
  --border:     hsl(218, 20%, 88%);
  --shadow-sm:  0 2px 8px hsla(218, 60%, 10%, 0.10);
  --shadow-md:  0 8px 32px hsla(218, 60%, 10%, 0.14);
  --shadow-lg:  0 20px 60px hsla(218, 60%, 10%, 0.20);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head:  'Montserrat', sans-serif;
  --font-body:  'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

address {
  font-style: normal;
}

/* ---- UTILITIES ---- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  background: hsla(100, 72%, 42%, 0.10);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-tag--light {
  color: var(--green-lite);
  background: hsla(100, 68%, 55%, 0.15);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
}

.section-title strong {
  color: var(--navy);
}

.section-title--light {
  color: var(--white);
}

.section-title--light strong {
  color: var(--green-lite);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.hide-sm { display: inline; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-transform: uppercase;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  box-shadow: 0 4px 16px hsla(100, 72%, 42%, 0.35);
}

.btn--primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px hsla(100, 72%, 42%, 0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: hsla(0, 0%, 100%, 0.50);
}

.btn--ghost:hover {
  background: hsla(0, 0%, 100%, 0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--ghost-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy-light);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}

.btn--nav {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  padding: 10px 20px;
  font-size: 0.82rem;
  border-radius: 6px;
  box-shadow: 0 2px 10px hsla(100, 72%, 42%, 0.30);
}

.btn--nav:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.btn--large {
  padding: 16px 36px;
  font-size: 0.92rem;
}

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

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.nav.scrolled {
  background: hsla(218, 72%, 14%, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px hsla(218, 72%, 10%, 0.30);
  padding: 8px 0;
}

.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
  transition: height var(--transition);
}

.nav.scrolled .nav__logo-img {
  height: 44px;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  background: hsla(0, 0%, 100%, 0.15);
  border-radius: 10px;
  padding: 4px 8px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid hsla(0, 0%, 100%, 0.20);
  transition: background var(--transition);
}

.nav__logo:hover {
  background: hsla(0, 0%, 100%, 0.22);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav__links a {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: hsla(0, 0%, 100%, 0.82);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav__links a:hover {
  color: var(--white);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.04);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.10); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    hsla(218, 72%, 12%, 0.88) 0%,
    hsla(218, 65%, 22%, 0.72) 50%,
    hsla(100, 60%, 12%, 0.55) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}

.hero__logo {
  height: 100px;
  width: auto;
  margin-bottom: 28px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
  mix-blend-mode: screen;
  animation: fadeInDown 0.9s ease both;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-lite);
  background: hsla(100, 68%, 55%, 0.15);
  border: 1px solid hsla(100, 68%, 55%, 0.30);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  animation: fadeInDown 1s 0.1s ease both;
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 700px;
  margin-bottom: 24px;
  animation: fadeInDown 1s 0.2s ease both;
}

.hero__title em {
  font-style: normal;
  color: var(--green-lite);
}

.hero__subtitle {
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  color: hsla(0, 0%, 100%, 0.80);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
  animation: fadeInDown 1s 0.3s ease both;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeInDown 1s 0.4s ease both;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 8px;
  animation: fadeInUp 1s 0.5s ease both;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__stat strong {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero__stat span {
  font-size: 0.78rem;
  color: hsla(0, 0%, 100%, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: hsla(0, 0%, 100%, 0.20);
  margin: 0 28px;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: hsla(0, 0%, 100%, 0.60);
  z-index: 1;
  animation: bounce 2s infinite;
  transition: color var(--transition);
}

.hero__scroll:hover { color: var(--white); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__media {
  position: relative;
}

.about__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.about__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}

.about__img:hover {
  transform: scale(1.01);
}

.about__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--green);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.80rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 24px hsla(100, 72%, 42%, 0.40);
}

.about__text .section-title {
  text-align: left;
}

.about__text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}

.about__list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.96rem;
  color: var(--text);
  font-weight: 500;
  padding: 12px 16px;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--green);
  transition: transform var(--transition), box-shadow var(--transition);
}

.about__list li:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.about__icon { display: none; }

/* =============================================
   METODOLOGIA
   ============================================= */
.method {
  position: relative;
  padding: 100px 0;
  background: var(--navy);
  overflow: hidden;
}

.method__bg-deco {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, hsla(100, 72%, 42%, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, hsla(218, 65%, 50%, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.method .section-desc {
  color: hsla(0, 0%, 100%, 0.65);
}

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

.method__card {
  background: hsla(0, 0%, 100%, 0.06);
  border: 1px solid hsla(0, 0%, 100%, 0.10);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.method__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.method__card:hover {
  background: hsla(0, 0%, 100%, 0.10);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px hsla(218, 72%, 5%, 0.30);
}

.method__card:hover::before {
  transform: scaleX(1);
}

.method__card-icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
  line-height: 1;
}

.method__card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.method__card p {
  font-size: 0.90rem;
  color: hsla(0, 0%, 100%, 0.60);
  line-height: 1.7;
}

/* =============================================
   TURMAS
   ============================================= */
.turmas {
  padding: 100px 0;
  background: var(--off-white);
}

.turmas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.turma__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  border: 2px solid transparent;
}

.turma__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}

.turma__card--featured {
  background: var(--navy);
  color: var(--white);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.turma__card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.turma__badge-featured {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 12px hsla(100, 72%, 42%, 0.40);
}

.turma__age {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.turma__card--featured .turma__age {
  color: var(--green-lite);
}

.turma__card h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.turma__card--featured h3 { color: var(--white); }

.turma__card p {
  font-size: 0.90rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.turma__card--featured p {
  color: hsla(0, 0%, 100%, 0.70);
}

.turma__card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.turma__card ul li {
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.turma__card ul li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.turma__card--featured ul li { color: hsla(0, 0%, 100%, 0.85); }

.turma__card--featured .btn--outline {
  color: var(--white);
  border-color: hsla(0, 0%, 100%, 0.40);
}

.turma__card--featured .btn--outline:hover {
  background: var(--white);
  color: var(--navy);
}

/* =============================================
   GALERIA – CARROSSEL INFINITO
   ============================================= */
.gallery {
  overflow: hidden;
  background: var(--navy);
  padding: 0;
}

.carousel__track-wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 48px 0;
}

/* fade edges */
.carousel__track-wrap::before,
.carousel__track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.carousel__track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--navy), transparent);
}
.carousel__track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--navy), transparent);
}

.carousel__track {
  display: flex;
  gap: 8px;
  width: max-content;
  animation: carousel-scroll 22s linear infinite;
}

.carousel__track:hover {
  animation-play-state: paused;
}

@keyframes carousel-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.carousel__slide {
  flex-shrink: 0;
  width: clamp(280px, 34vw, 520px);
  height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
}

.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.carousel__slide:hover img {
  transform: scale(1.04);
}

/* =============================================
   UNIDADES
   ============================================= */
.unidades {
  padding: 100px 0;
  background: var(--white);
}

.unidades__block {
  margin-bottom: 60px;
}

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

.unidades__block-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-light);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

/* Condomínios */
.condominios__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.condominio__card {
  background: var(--off-white);
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 16px 28px;
  transition: all var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.condominio__card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.condominio__card:hover {
  border-color: var(--navy-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.condominio__card:hover::before {
  transform: scaleX(1);
}

.condominio__name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}

/* Unidades externas */
.unidades__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.unidade__card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 2px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.unidade__card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--green));
}

.unidade__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy-light);
}

.unidade__number {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.04em;
}

.unidade__card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.unidade__card address {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* =============================================
   CTA STRIP
   ============================================= */
.cta-strip {
  background: linear-gradient(135deg, var(--navy) 0%, hsl(218, 72%, 28%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, hsla(100, 72%, 42%, 0.12) 0%, transparent 65%);
}

.cta-strip__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 36px;
  position: relative;
}

.cta-strip__text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.cta-strip__text h2 strong {
  color: var(--green-lite);
}

.cta-strip__text p {
  font-size: 1rem;
  color: hsla(0, 0%, 100%, 0.70);
}

.cta-strip__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  flex-shrink: 0;
}

/* =============================================
   CONTATO
   ============================================= */
.contato {
  padding: 100px 0;
  background: var(--off-white);
}

.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contato__info .section-title {
  text-align: left;
}

.contato__info p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contato__links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contato__link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: all var(--transition);
}

.contato__link:hover {
  border-color: var(--green);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.contato__link-icon {
  width: 44px;
  height: 44px;
  background: var(--green);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contato__link-icon--ig {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.contato__link strong {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.contato__link span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Form */
.contato__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form__group label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.form__group input,
.form__group select,
.form__group textarea {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--off-white);
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form__group textarea {
  resize: vertical;
  min-height: 100px;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--navy-light);
  box-shadow: 0 0 0 3px hsla(218, 55%, 38%, 0.12);
  background: var(--white);
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: hsl(218, 15%, 65%);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: hsl(218, 72%, 12%);
  padding: 64px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.10);
}

.footer__logo {
  height: 64px;
  width: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.footer__brand p {
  font-size: 0.88rem;
  color: hsla(0, 0%, 100%, 0.55);
  line-height: 1.7;
}

.footer__links h4,
.footer__contact h4 {
  font-family: var(--font-head);
  font-size: 0.80rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--green-lite);
  margin-bottom: 20px;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.90rem;
  color: hsla(0, 0%, 100%, 0.60);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--white);
}

.footer__contact p {
  font-size: 0.88rem;
  color: hsla(0, 0%, 100%, 0.60);
  line-height: 2;
  margin-bottom: 20px;
}

.footer__cta {
  margin-top: 4px;
  font-size: 0.82rem;
  padding: 11px 20px;
}

.footer__contact a {
  color: var(--green-lite);
  transition: color var(--transition);
}

.footer__contact a:hover {
  color: var(--white);
}

.footer__bottom {
  padding: 20px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.80rem;
  color: hsla(0, 0%, 100%, 0.35);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .method__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__grid {
    gap: 48px;
  }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .btn--nav   { display: none; }

  .nav__hamburger {
    display: flex;
    margin-left: auto;
  }

  /* Mobile nav open state */
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 99;
  }

  .nav__links.open a {
    font-size: 1.4rem;
    color: var(--white);
  }

  .about__grid {
    grid-template-columns: 1fr;
  }

  .about__media { order: -1; }

  .unidades__grid {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .hero__title { font-size: 2.4rem; }
  .hide-sm     { display: none; }

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

  .hero__stat-divider { display: none; }
  .hero__stats        { gap: 24px; }

  .method__cards {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }

  .unidade__card {
    padding: 28px 20px;
  }

  .carousel__slide {
    width: clamp(220px, 72vw, 320px);
    height: 280px;
  }

  .condominios__grid {
    justify-content: flex-start;
  }
}

