@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #0b1713;
  --bg-2: #10241d;
  --green: #16392d;
  --green-soft: #214c3d;
  --green-2: #2a5c49;
  --gold: #c7a15f;
  --gold-soft: #dfc38c;
  --ivory: #f5f0e8;
  --text: rgba(255,255,255,0.82);
  --text-soft: rgba(255,255,255,0.68);
  --line: rgba(255,255,255,0.08);
  --shadow: 0 20px 50px rgba(0,0,0,0.28);
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(36,90,69,0.25), transparent 30%),
    radial-gradient(circle at right center, rgba(199,161,95,0.10), transparent 20%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  color: white;
  font-family: "Cormorant Garamond", Georgia, serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(8, 20, 16, 0.78);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.topbar-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 62px;
  height: auto;
  flex: 0 0 auto;
}

.brand-text {
  font-size: 24px;
  line-height: 1;
  color: var(--ivory);
  font-weight: 500;
  min-width: 0;
}

.brand-text small {
  display: block;
  margin-bottom: 6px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav a {
  color: rgba(255,255,255,0.78);
}

.nav a:hover {
  color: var(--gold-soft);
}

.hero {
  position: relative;
  min-height: 96vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,18,14,0.30) 0%, rgba(6,18,14,0.72) 100%),
    linear-gradient(90deg, rgba(10,35,24,0.78) 0%, rgba(11,30,24,0.42) 35%, rgba(8,17,14,0.58) 100%),
    url("img/hero.jpg") center/cover no-repeat;
  transform: scale(1.02);
  filter: saturate(0.92);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 25%, rgba(0,0,0,0.18) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 70px 0 96px;
  text-align: center;
}

.hero-logo {
  width: min(320px, 58vw);
  margin: 0 auto 22px;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.18));
}

.eyebrow {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid rgba(199,161,95,0.32);
  border-radius: 999px;
  color: var(--gold-soft);
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: rgba(12,31,24,0.22);
}

h1 {
  margin: 24px 0 18px;
  font-size: clamp(62px, 8vw, 112px);
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ivory);
}

h1 span {
  display: block;
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.hero-subtitle {
  max-width: 760px;
  margin: 0 auto 18px;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
  color: var(--text);
}

.hero-lead {
  max-width: 760px;
  margin: 0 auto 28px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 0.2s ease;
  white-space: nowrap;
}

.hero-btn-primary {
  background: linear-gradient(135deg, var(--gold), #b9914e);
  color: #1b1b1b;
  box-shadow: 0 12px 30px rgba(199,161,95,0.24);
}

.hero-btn-primary:hover {
  transform: translateY(-1px);
}

.hero-btn-secondary {
  color: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
}

.hero-btn-secondary:hover {
  background: rgba(255,255,255,0.08);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stat {
  padding: 22px 14px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  min-width: 0;
}

.stat strong {
  display: block;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 0.98;
  color: var(--gold-soft);
  letter-spacing: -0.02em;
  font-weight: 500;
}

.stat-wide-word strong {
  white-space: nowrap;
  font-size: clamp(26px, 2.8vw, 40px);
}

.stat span {
  display: block;
  margin-top: 10px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.74);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.section {
  padding: 92px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.alt-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}

.section-intro {
  max-width: 760px;
  margin-bottom: 34px;
}

.kicker {
  margin-bottom: 14px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(40px, 4.6vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--ivory);
}

.section-intro p,
.card p,
.feature-box p,
.finish-note,
.contact-box p,
.gallery-note {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.72;
  color: var(--text);
}

.feature-grid,
.cards,
.finish-grid,
.location-cards {
  display: grid;
  gap: 28px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
}

.feature-box,
.card,
.finish-box,
.location-card,
.contact-box {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
}

.feature-box h3,
.card h3,
.finish-box h3 {
  margin: 0 0 12px;
  font-size: clamp(34px, 3vw, 42px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--ivory);
}

.cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 36px;
}

.models-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.model-card {
  position: relative;
  overflow: hidden;
}

.model-label {
  margin-bottom: 10px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.model-summary {
  margin-bottom: 18px !important;
}

.detail-list {
  margin: 0;
  padding-left: 20px;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
}

.detail-list li {
  margin: 10px 0;
  line-height: 1.65;
}

.version-blocks {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.version-item {
  padding: 16px 16px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.version-name {
  margin-bottom: 10px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.compact-list {
  font-size: 14px;
}

.compact-list li {
  margin: 7px 0;
}

.future-model-card {
  background: linear-gradient(180deg, rgba(223,195,140,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(199,161,95,0.18);
}

.model-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 22px;
}

.model-image-box {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.model-image-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.model-image-box span {
  display: block;
  padding: 10px 12px 12px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* OLIMPO */
.olimpo-versions {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.olimpo-version-card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(199,161,95,0.18);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
}

.olimpo-version-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.olimpo-version-title {
  margin: 0;
  font-size: 28px;
  line-height: 1;
  color: var(--ivory);
}

.olimpo-version-price {
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.olimpo-main-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.olimpo-gallery-button-row {
  display: flex;
  justify-content: flex-start;
  margin-top: 16px;
}

.olimpo-gallery-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(199,161,95,0.28);
  border-radius: 999px;
  background: rgba(199,161,95,0.10);
  color: var(--gold-soft);
  cursor: pointer;
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 0.2s ease;
}

.olimpo-gallery-btn:hover {
  transform: translateY(-1px);
  background: rgba(199,161,95,0.16);
  border-color: rgba(199,161,95,0.40);
}

.location-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
}

.location-card {
  text-align: center;
  min-width: 0;
}

.location-card strong {
  display: block;
  font-size: clamp(34px, 3vw, 44px);
  line-height: 0.98;
  font-weight: 500;
  color: var(--gold-soft);
}

.location-card span {
  display: block;
  margin-top: 10px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}

.location-map-block {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  gap: 28px;
  margin-top: 34px;
  align-items: stretch;
}

.location-map-text,
.location-map-visual {
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  min-width: 0;
}

.location-map-text {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
}

.location-map-visual {
  background: linear-gradient(180deg, rgba(199,161,95,0.08), rgba(255,255,255,0.03));
  display: flex;
  align-items: stretch;
}

.location-map-text h3 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.02;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: var(--ivory);
}

.location-map-text p {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.72;
  color: var(--text);
}

.location-map-points {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.location-map-point {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}

.location-map-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.location-map-image-box {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.02);
  min-height: 360px;
  display: flex;
}

.location-map-image-box img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.finish-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 36px;
}

.finish-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.optional-box {
  border: 1px solid rgba(199,161,95,0.28);
  background: linear-gradient(180deg, rgba(199,161,95,0.10), rgba(255,255,255,0.03));
}

.finish-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.finish-note {
  margin-top: 24px;
  padding: 22px 24px;
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,0.03);
  border-radius: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  min-height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  display: block;
}

.gallery-note {
  margin-top: 22px;
  padding: 18px 22px;
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,0.03);
  border-radius: 18px;
}

.clickable-image {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.clickable-image:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.22);
}

.contact-intro {
  max-width: 760px;
}

.contact-intro h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 0.98;
  margin-bottom: 12px;
}

.contact-final-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  margin-top: 34px;
  align-items: stretch;
}

.contact-final-box {
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.contact-main-box {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
}

.contact-side-box {
  background: linear-gradient(180deg, rgba(199,161,95,0.08), rgba(255,255,255,0.03));
}

.contact-mini-kicker {
  margin-bottom: 10px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.contact-mini-kicker-spaced {
  margin-top: 24px;
}

.contact-final-box h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.02;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: var(--ivory);
}

.contact-final-box p,
.next-step p {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}

.contact-data-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-data-item {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.contact-data-item small {
  display: block;
  margin-bottom: 6px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.contact-data-item strong {
  display: block;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 500;
  color: var(--ivory);
}

.contact-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 0.2s ease;
}

.contact-btn-primary {
  background: linear-gradient(135deg, var(--gold), #b9914e);
  color: #1b1b1b;
  box-shadow: 0 10px 24px rgba(199,161,95,0.22);
}

.contact-btn-primary:hover {
  transform: translateY(-1px);
}

.contact-btn-secondary {
  color: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
}

.contact-btn-secondary:hover {
  background: rgba(255,255,255,0.08);
}

.social-links {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.social-link {
  display: block;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  transition: 0.2s ease;
}

.social-link:hover {
  background: rgba(255,255,255,0.06);
}

.social-link small {
  display: block;
  margin-bottom: 6px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.social-link strong {
  display: block;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
  color: var(--ivory);
}

.next-steps {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.next-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.next-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--gold-soft);
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 8, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  z-index: 9999;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 1100px;
  width: 100%;
  max-height: 90vh;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.lightbox-caption {
  margin-top: 14px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: white;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.20);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  color: white;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: 0.2s ease;
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.18);
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 12000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 18px 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #1faa52);
  color: #ffffff !important;
  text-decoration: none;
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(0,0,0,0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.34);
}

.whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  font-size: 16px;
  line-height: 1;
}

.whatsapp-text {
  white-space: nowrap;
}

.site-footer {
  padding: 22px 16px 34px;
  text-align: center;
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255,255,255,0.58);
  border-top: 1px solid rgba(255,255,255,0.05);
  background: rgba(0,0,0,0.10);
}

@media (max-width: 980px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 16px 0;
  }

  .feature-grid,
  .cards,
  .finish-grid,
  .location-cards,
  .hero-stats,
  .models-grid-3,
  .finish-grid-3,
  .contact-final-grid,
  .location-map-block,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .finish-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-wide-word strong {
    white-space: normal;
    font-size: clamp(28px, 4vw, 42px);
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }
}

@media (max-width: 760px) {
  .nav {
    gap: 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 56px 0 74px;
  }

  h1 {
    font-size: clamp(52px, 12vw, 86px);
  }

  h2 {
    font-size: clamp(34px, 9vw, 52px);
  }

  .brand-logo {
    width: 48px;
  }

  .hero-logo {
    width: min(220px, 60vw);
  }

  .feature-box h3,
  .card h3,
  .finish-box h3 {
    font-size: 34px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-btn {
    width: 100%;
    max-width: 280px;
  }

  .hero-lead {
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat strong,
  .stat-wide-word strong {
    font-size: clamp(24px, 7vw, 34px);
    white-space: normal;
  }

  .stat span {
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .model-images,
  .olimpo-main-images {
    grid-template-columns: 1fr;
  }

  .model-image-box img {
    height: auto;
  }

  .finish-gallery,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .contact-intro h2 {
    font-size: 38px;
  }

  .contact-final-box,
  .location-map-text,
  .location-map-visual,
  .olimpo-version-card {
    padding: 22px;
  }

  .contact-final-box h3,
  .location-map-text h3 {
    font-size: 24px;
  }

  .olimpo-version-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .olimpo-version-title {
    font-size: 24px;
  }

  .contact-buttons,
  .location-map-actions,
  .olimpo-gallery-button-row {
    flex-direction: column;
  }

  .contact-btn,
  .location-map-actions .hero-btn,
  .olimpo-gallery-btn {
    width: 100%;
    max-width: 280px;
  }

  .contact-data-item strong,
  .social-link strong {
    font-size: 15px;
  }

  .location-map-image-box,
  .location-map-image-box img,
  .gallery-item,
  .gallery-item img {
    min-height: 240px;
  }

  .lightbox {
    padding: 16px;
  }

  .lightbox-close {
    top: -8px;
    right: -4px;
  }

  .lightbox-content img {
    max-height: 75vh;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }

  .lightbox-prev {
    left: 4px;
  }

  .lightbox-next {
    right: 4px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 52px;
    padding: 0 16px 0 14px;
    font-size: 12px;
  }

  .whatsapp-text {
    display: none;
  }

  .site-footer {
    padding: 18px 14px 88px;
    font-size: 11px;
    line-height: 1.65;
  }
}