:root {
  --color-primary: #4a9b8e;
  --color-primary-light: #5db3a5;
  --color-primary-dark: #3a7d72;
  --color-bg-dark: #0b1222;
  --color-bg-darker: #07101a;
  --color-bg-darkest: #050b14;
  --color-text: #fff;
  --color-text-secondary: #dce6f2;
  --color-text-muted: #cfd8e3;
  --transition-base: 0.3s ease;
  --transition-smooth: 0.4s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  color: var(--color-text);
  background: var(--color-bg-darkest);
}

/* ========== HEADER MOBILE ========== */
.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 18, 34, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74, 155, 142, 0.1);
  padding: 12px 20px;
}

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

.logo-mobile {
  height: 45px;
  width: auto;
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  display: flex;
  flex-direction: column;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: var(--color-bg-dark);
  overflow-y: auto;
  transition: right 0.4s ease;
  z-index: 999;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
  right: 0;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-logo {
  height: 40px;
}

.menu-close {
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 2rem;
  cursor: pointer;
  padding: 5px;
  line-height: 1;
  transition: color 0.3s ease;
}

.menu-close:hover {
  color: var(--color-primary);
}

.menu-list {
  list-style: none;
  padding: 20px 0;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  color: var(--color-text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.menu-item:hover {
  background: rgba(74, 155, 142, 0.1);
  color: var(--color-primary);
}

.menu-icon {
  font-size: 1.3rem;
}

.arrow {
  margin-left: auto;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.arrow.rotated {
  transform: rotate(90deg);
}

.submenu {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
}

.submenu.active {
  max-height: 500px;
}

.submenu li {
  padding-left: 20px;
}

.submenu a {
  display: block;
  padding: 12px 20px;
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.submenu a:hover {
  color: var(--color-primary);
  padding-left: 24px;
}

.menu-contact {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-btn-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(74, 155, 142, 0.1);
  border: 1px solid var(--color-primary);
  border-radius: 8px;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-btn-menu:hover {
  background: var(--color-primary);
  color: var(--color-bg-darkest);
}

.contact-btn-menu.whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
}

/* ========== HEADER DESKTOP ========== */
#header {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 18, 34, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74, 155, 142, 0.1);
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 15px 40px;
}

#header.scrolled {
  background: rgba(7, 16, 26, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  padding: 10px 40px;
}

nav {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 60px;
}

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links a, .menu-link {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  cursor: pointer;
}

.nav-links a:hover, .menu-link:hover {
  color: var(--color-primary);
}

.contact-btn {
  padding: 12px 28px;
  background: var(--color-primary);
  color: var(--color-bg-darkest);
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(74, 155, 142, 0.4);
}

.dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 23, 41, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 0;
  min-width: 220px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 10px;
}

.sub-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: rgba(15, 23, 41, 0.98);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sub-menu.show {
  opacity: 1;
  visibility: visible;
}

.sub-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.sub-menu a:hover {
  background: rgba(74, 155, 142, 0.1);
  color: var(--color-primary);
  padding-left: 24px;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: url('../imagens/back.jpg') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 16, 26, 0.9) 0%, rgba(11, 18, 34, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  padding: 0 40px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, #ffffff 0%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(18px, 2vw, 24px);
  color: var(--color-text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 16px 40px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-btn.primary {
  background: var(--color-primary);
  color: var(--color-bg-darkest);
}

.hero-btn.primary:hover {
  background: var(--color-primary-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(74, 155, 142, 0.4);
}

.hero-btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-text);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-primary);
}

/* ========== SECTIONS ========== */
.section {
  padding: 120px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

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

.section-tag {
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.1;
}

.section-description {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.value-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(74, 155, 142, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.value-card:hover::before {
  opacity: 1;
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 12px;
  color: #fff;
}

.value-icon svg {
  width: 32px;
  height: 32px;
}

.value-card h3 {
  font-size: 1.5rem;
  color: var(--color-text);
  margin-bottom: 16px;
  font-weight: 700;
}

.value-card p {
  color: var(--color-text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

.section.dark {
  background: transparent;
  margin: 1vw 12vw;
  padding: 120px 40px;
  border-radius: 0;
}

.differentials-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 80px;
}

.differential-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  align-items: start;
  padding: 50px;
  background: linear-gradient(135deg, rgba(74, 155, 142, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border-left: 3px solid var(--color-primary);
  border-radius: 12px;
  position: relative;
  transition: all var(--transition-smooth);
}

.differential-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(135deg, var(--color-primary), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.differential-item:hover {
  transform: translateX(10px);
  background: linear-gradient(135deg, rgba(74, 155, 142, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.differential-item:hover::before {
  opacity: 0.5;
}

.differential-item.reverse {
  grid-template-columns: 1fr 120px;
  border-left: none;
  border-right: 3px solid var(--color-primary);
  text-align: right;
}

.differential-item.reverse:hover {
  transform: translateX(-10px);
}

.differential-item.reverse .differential-number {
  order: 2;
}

.differential-number {
  font-size: 5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-primary), rgba(74, 155, 142, 0.3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  opacity: 0.8;
}

.differential-content h3 {
  font-size: 1.8rem;
  color: var(--color-text);
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.differential-content p {
  color: var(--color-text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.differential-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat strong {
  font-size: 2rem;
  color: var(--color-primary);
  font-weight: 800;
}

.stat span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.differential-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
  justify-content: flex-start;
}

.differential-item.reverse .differential-badges {
  justify-content: flex-end;
}

.badge {
  padding: 8px 16px;
  background: rgba(74, 155, 142, 0.1);
  border: 1px solid rgba(74, 155, 142, 0.3);
  border-radius: 20px;
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.differential-pillars {
  display: flex;
  gap: 24px;
  margin-top: 30px;
}

.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  flex: 1;
  transition: all var(--transition-base);
}

.pillar:hover {
  background: rgba(74, 155, 142, 0.08);
  transform: translateY(-5px);
}

.pillar-icon {
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-icon svg {
  width: 28px;
  height: 28px;
}

.pillar span {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ========== LOCATION ========== */
.location-section {
  position: relative;
  height: 80vh;
  min-height: 520px;
  overflow: hidden;
}

.location-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(1) contrast(1.1) brightness(0.5);
}

.location-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11,18,34,0.95), rgba(11,18,34,0.6));
}

.location-overlay {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 60px;
  margin: 80px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(18px);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.location-tag {
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.75rem;
}

.location-overlay h2 {
  font-size: 2.6rem;
  color: var(--color-text);
  margin: 16px 0 10px;
}

.location-overlay p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

.location-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.location-actions a {
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(74, 155, 142, 0.15);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition-base);
}

.location-actions a:hover {
  background: var(--color-primary);
  color: #001018;
  transform: translateY(-4px);
}

/* ========== FOOTER MOBILE ========== */
.mobile-footer {
  display: none;
  background: linear-gradient(180deg, var(--color-bg-darkest) 0%, #030508 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 20px;
  background: rgba(74, 155, 142, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.quick-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.quick-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-3px);
}

.btn-icon {
  font-size: 1.8rem;
}

.btn-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
}

.quick-btn.whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
}

.footer-info {
  padding: 40px 20px;
}

.footer-brand {
  text-align: left;
  margin-bottom: 40px;
  padding-bottom: 30px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
}

.footer-brand h3 {
  font-size: 1.5rem;
  color: var(--color-text);
  margin-bottom: 8px;
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer-section {
  margin-bottom: 30px;
}

.footer-section h4 {
  color: var(--color-text);
  font-size: 1.1rem;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 10px;
}

.footer-section a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.footer-bottom p {
  margin: 4px 0;
}

/* ========== FOOTER DESKTOP ========== */
#contato {
  display: block;
  background: linear-gradient(180deg, var(--color-bg-darkest) 0%, #030508 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-content .footer-brand h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--color-text);
}

.footer-content .footer-brand span {
  color: var(--color-primary);
}

.footer-content .footer-brand img {
  filter: brightness(0) invert(1);
  transition: filter var(--transition-base);
}

.footer-content .footer-brand img:hover {
  filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(140deg);
}

.footer-content .footer-brand p {
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  text-decoration: none;
  transition: all var(--transition-base);
  font-size: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a svg {
  width: 20px;
  height: 20px;
}

.footer-social a:hover {
  background: var(--color-primary);
  transform: translateY(-3px);
  border-color: var(--color-primary);
}

.footer-links h4 {
  color: var(--color-text);
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-base);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--color-primary);
}

#contato .footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* ========== RESPONSIVIDADE ========== */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .differential-item,
  .differential-item.reverse {
    grid-template-columns: 80px 1fr;
    gap: 24px;
    padding: 30px;
  }

  .differential-number {
    font-size: 3.5rem;
  }

  .differential-stats {
    flex-direction: column;
    gap: 20px;
  }

  .differential-pillars {
    gap: 12px;
  }

  .section.dark {
    margin: 1vw 4vw;
  }
}

@media (max-width: 768px) {
  /* Mostrar header mobile, esconder desktop */
  .mobile-header {
    display: block;
  }

  #header {
    display: none;
  }

  /* Mostrar footer mobile, esconder desktop */
  .mobile-footer {
    display: block;
  }

  #contato {
    display: none;
  }

  /* Ajustes gerais */
  body {
    padding-top: 70px;
  }

  .hero {
    height: auto;
    min-height: 100vh;
    padding: 120px 24px 80px;
  }

  .hero-buttons {
    flex-direction: column;
  }

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

  .section {
    padding: 80px 24px;
  }

  .section.dark {
    margin: 0;
    padding: 80px 24px;
  }

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

  .differential-item,
  .differential-item.reverse {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 24px;
    text-align: left;
    border-left: 3px solid var(--color-primary);
    border-right: none;
  }

  .differential-item:hover,
  .differential-item.reverse:hover {
    transform: translateY(-5px);
  }

  .differential-number {
    font-size: 3rem;
  }

  .differential-badges {
    justify-content: flex-start !important;
  }

  .differential-stats {
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
  }

  .stat strong {
    font-size: 1.5rem;
  }

  .stat span {
    font-size: 0.75rem;
  }

  .differential-pillars {
    flex-direction: column;
    gap: 12px;
  }

  .location-overlay {
    margin: 40px 20px;
    padding: 40px;
  }

  .location-overlay h2 {
    font-size: 2rem;
  }

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

@media (max-width: 480px) {
  .logo-mobile {
    height: 38px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .differential-content h3 {
    font-size: 1.4rem;
  }

  .differential-content p {
    font-size: 0.95rem;
  }

  .location-overlay {
    padding: 30px;
    margin: 20px;
  }

  .quick-actions {
    grid-template-columns: 1fr;
  }

  .quick-btn {
    flex-direction: row;
    justify-content: center;
  }
}
