/* ============================================
   Hub Coworking — Premium Landing Page
   ============================================ */

:root {
  --color-white: #FFFFFF;
  --color-black: #0A0A0A;
  --color-dark: #111111;
  --color-gray-900: #1A1A1A;
  --color-gray-700: #4A4A4A;
  --color-gray-500: #7A7A7A;
  --color-gray-300: #B8B8B8;
  --color-gray-100: #F5F5F5;
  --color-accent: #03BBE0;
  --color-accent-dark: #0299B8;
  --color-accent-glow: rgba(3, 187, 224, 0.35);

  --font-logo: 'Michroma', sans-serif;
  --font-body: 'Manrope', sans-serif;

  --header-height: 80px;
  --container-max: 1280px;
  --section-padding: clamp(80px, 10vw, 140px);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.12);
  --shadow-accent: 0 8px 32px var(--color-accent-glow);

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-cinematic: 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-gray-700);
  background: var(--color-white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

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

address {
  font-style: normal;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.section {
  padding: var(--section-padding) 0;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-black);
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-gray-500);
  line-height: 1.8;
  max-width: 480px;
}

.text-accent {
  color: var(--color-accent);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 16px 32px;
  border-radius: 50px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 -6px 18px rgba(0, 190, 255, 0.12);
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn--primary:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px var(--color-accent-glow);
}

.btn--primary:hover::before {
  opacity: 1;
}

.btn--primary:hover svg {
  transform: translateX(4px);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--glow {
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 8px 32px var(--color-accent-glow); }
  50% { box-shadow: 0 8px 48px rgba(3, 187, 224, 0.55); }
}

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

.btn--large {
  padding: 18px 40px;
  font-size: 1rem;
}

.btn--xl {
  padding: 22px 48px;
  font-size: 1.1rem;
}

/* ============================================
   Header
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: all var(--transition-base);
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.header--scrolled .header__link {
  color: var(--color-black);
}

.header--scrolled .header__icon {
  color: var(--color-black);
}

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

.header__logo img {
  height: 160px;
  width: auto;
  transition: transform var(--transition-fast);
}
.logo-preto {
  display: none;
}

.header--scrolled .logo-branco {
  display: none;
}

.header--scrolled .logo-preto {
  display: block;
}
.header__logo:hover img {
  transform: scale(1.03);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 48px;
}

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

.header__link {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-white);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-base);
}

.header__link:hover {
  color: var(--color-accent);
}

.header__link:hover::after {
  width: 100%;
}

.header__social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--transition-base);
}

.header__icon svg {
  width: 18px;
  height: 18px;
}

.header__icon:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-accent);
}

.header--scrolled .header__icon {
  background: var(--color-gray-100);
  border-color: transparent;
}

.header--scrolled .header__icon:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

.header__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  padding: 4px 0;
  z-index: 1001;
}

.header__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition-fast);
  transform-origin: center;
}

.header--scrolled .header__toggle span {
  background: var(--color-black);
}

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

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

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

/* ============================================
   Hero
   ============================================ */

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

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

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.hero__slide--active {
  opacity: 1;
  z-index: 1;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  animation: heroZoom 12s ease-out forwards;
}

.hero__slide--active img {
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.12); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.25) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 3;
  padding-top: var(--header-height);
  width: 100%;
}

.hero__text {
  max-width: 680px;
  padding: clamp(40px, 8vh, 80px) 0;
}

.hero__title {
  font-family: var(--font-logo);
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--color-white);
  letter-spacing: 0.03em;
  margin-bottom: 24px;
}

.hero__title-accent {
  color: var(--color-accent);
  display: inline;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 540px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.hero__scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  position: relative;
}

.hero__scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

/* ============================================
   Sobre
   ============================================ */

.sobre {
  background: var(--color-white);
}

.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.sobre__text p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--color-gray-700);
}

.sobre__text p:last-child {
  margin-bottom: 0;
}

.sobre__content .section-title {
  margin-bottom: 32px;
  font-family: var(--font-logo);
}

.sobre__visual {
  position: relative;
}

.sobre__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.sobre__image-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.sobre__image-wrap:hover img {
  transform: scale(1.03);
}

.sobre__image-glow {
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.sobre__floating-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--color-white);
  padding: 24px 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: floatCard 4s ease-in-out infinite;
}

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

.sobre__floating-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-black);
}

.sobre__floating-label {
  font-size: 0.85rem;
  color: var(--color-gray-500);
}

/* ============================================
   Ambientes
   ============================================ */

.ambientes {
  background: var(--color-gray-100);
}

.ambientes__header {
  display: block;
  margin-bottom: 60px;
}

.ambientes__header-left {
  width: 100%;
}

.ambientes__header-left .section-desc {
  max-width: 100%;
  width: 100%;
  margin-top: 24px;
}.ambientes__header-left {
  max-width: 1200px;
}

.ambientes__header-left .section-title {
  max-width: 1100px;
  font-family: var(--font-logo);
}

.ambientes__header-left .section-desc {
  max-width: 900px;
  width: 100%;
  margin-top: 24px;
}
.ambientes__shadow-wrapper {
    padding: 24px;
    border-radius: calc(var(--radius-xl) + 24px);
    filter: drop-shadow(0 0 14px rgba(0, 0, 0, 0.07));
}
.ambientes__carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: none;
  
}

.ambientes__track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.ambiente-card {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: none;
  min-height: 520px;
}

.ambiente-card__gallery {
  position: relative;
  overflow: hidden;
}

.ambiente-gallery {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.ambiente-gallery__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.ambiente-gallery__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.ambiente-gallery__slide--active {
  opacity: 1;
  z-index: 1;
}

.ambiente-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ambiente-gallery__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-fast);
  opacity: 0.85;
}

.ambiente-gallery:hover .ambiente-gallery__btn {
  opacity: 1;
}

.ambiente-gallery__btn:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-50%) scale(1.08);
}

.ambiente-gallery__btn svg {
  width: 20px;
  height: 20px;
}

.ambiente-gallery__btn--prev { left: 16px; }
.ambiente-gallery__btn--next { right: 16px; }

.ambiente-gallery__dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.ambiente-gallery__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-fast);
  padding: 0;
}

.ambiente-gallery__dot--active {
  background: var(--color-accent);
  width: 24px;
  border-radius: 4px;
}

.ambiente-card__info {
  padding: clamp(32px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ambiente-card__title {
  font-family: var(--font-logo);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--color-black);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.ambiente-card__desc {
  font-size: 1rem;
  color: var(--color-gray-500);
  margin-bottom: 24px;
  line-height: 1.7;
}

.ambiente-card__includes {
  margin-bottom: 20px;
}

.ambiente-card__includes-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gray-500);
  margin-bottom: 10px;
}

.ambiente-card__includes ul li {
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
  color: var(--color-gray-700);
  margin-bottom: 6px;
}

.ambiente-card__includes ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

.ambiente-card__capacity {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 28px;
  padding: 12px 16px;
  background: var(--color-gray-100);
  border-radius: var(--radius-sm);
}

.ambiente-card__capacity svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.ambientes__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.ambientes__nav-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.ambientes__nav-btn svg {
  width: 22px;
  height: 22px;
}

.ambientes__nav-btn:hover {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
  transform: scale(1);
  box-shadow: none(--shadow-accent);
}

.ambientes__indicators {
  display: flex;
  gap: 10px;
}

.ambientes__indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-gray-300);
  transition: all var(--transition-base);
  padding: 0;
}

.ambientes__indicator--active {
  background: var(--color-accent);
  width: 32px;
  border-radius: 5px;
}

/* ============================================
   Endereço Fiscal
   ============================================ */

.fiscal {
  position: relative;
  background: var(--color-dark);
  color: var(--color-white);
  overflow: hidden;
}

.fiscal__bg-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.fiscal__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.fiscal__orb--1 {
  width: 500px;
  height: 500px;
  background: rgba(3, 187, 224, 0.12);
  top: -200px;
  right: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}

.fiscal__orb--2 {
  width: 400px;
  height: 400px;
  background: rgba(3, 187, 224, 0.08);
  bottom: -150px;
  left: -100px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}

.fiscal__grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(3, 187, 224, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(3, 187, 224, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.fiscal__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.fiscal__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  padding: 8px 16px;
  border: 1px solid rgba(3, 187, 224, 0.3);
  border-radius: 50px;
  margin-bottom: 24px;
  background: rgba(3, 187, 224, 0.08);
}

.fiscal__title {
  font-family: var(--font-logo);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-white);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.fiscal__text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
}

.fiscal__content .btn {
  margin-top: 16px;
}

.fiscal__benefits {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 48px);
  backdrop-filter: blur(12px);
}

.fiscal__benefits-title {
  font-family: var(--font-logo);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fiscal__benefits-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.fiscal__benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  transition: transform var(--transition-fast);
}

.fiscal__benefit:hover {
  transform: translateX(4px);
}

.fiscal__benefit-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(3, 187, 224, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.fiscal__benefit:hover .fiscal__benefit-icon {
  background: var(--color-accent);
}

.fiscal__benefit-icon svg {
  width: 14px;
  height: 14px;
  color: var(--color-accent);
  transition: color var(--transition-fast);
}

.fiscal__benefit:hover .fiscal__benefit-icon svg {
  color: var(--color-white);
}

.fiscal__ideal {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fiscal__ideal-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.fiscal__ideal p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

/* ============================================
   Planos
   ============================================ */

.planos {
  background: var(--color-white);
}

.planos__header {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 60px;
}
.planos__header .section-title {
  font-family: var(--font-logo);
}

.planos__header .section-label {
  display: block;
}

.planos__intro {
  font-size: 1.05rem;
  color: var(--color-gray-500);
  line-height: 1.85;
  margin-top: 20px;
}

.planos__table-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 48px;
}

.planos__table {
  width: 100%;
  border-collapse: collapse;
}

.planos__table thead {
  background: var(--color-black);
}

.planos__table th {
  padding: 20px 28px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.planos__table td {
  padding: 24px 28px;
  font-size: 0.95rem;
  color: var(--color-gray-700);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: background var(--transition-fast);
}
.planos__table td:first-child {
  white-space: nowrap;
  width: 220px;
}
.planos__table tbody tr {
  transition: all var(--transition-fast);
}

.planos__table tbody tr:hover {
  background: rgba(3, 187, 224, 0.04);
}

.planos__table tbody tr:last-child td {
  border-bottom: none;
}

.planos__plan-name {
  font-weight: 700;
  color: var(--color-black);
  font-size: 1rem;
}

.planos__cta {
  text-align: center;
  margin-top: -65px;
  margin-bottom: 70px;
}

.planos__benefits {
  max-width: 1200px;
  margin: 90px auto 0;
  text-align: center;
}

.planos__benefits-title {
  font-family: var(--font-logo);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 12px;
}
.planos__benefits-title span {
  font-family: var(--font-logo);
  color: var(--color-accent);
}
.planos__benefits-intro {
  max-width: 1200px;
  margin: 0px auto 48px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-gray-700);
}
.planos__benefits-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.planos__benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--color-gray-700);
  padding: 30px 20px;
  background: var(--color-gray-100);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.planos__benefits-list li:hover {
  background: rgba(3, 187, 224, 0.08);
  transform: translateY(-2px);
}

.planos__benefit-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.planos__benefit-icon svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
}

/* ============================================
   Localização
   ============================================ */

.localizacao {
  background: var(--color-gray-100);
}

.localizacao__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: stretch;
}

.localizacao__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 420px;
  background: var(--color-gray-300);
}

.localizacao__map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

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

.localizacao__info .section-title {
  font-family: var(--font-logo);
  margin-bottom: 36px;
}

.localizacao__details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 36px;
}

.localizacao__details li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.localizacao__details svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.localizacao__details strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-gray-500);
  margin-bottom: 4px;
}

.localizacao__details span,
.localizacao__details a {
  font-size: 1rem;
  color: var(--color-black);
  font-weight: 500;
}

.localizacao__details a:hover {
  color: var(--color-accent);
}

/* ============================================
   CTA Final
   ============================================ */

.cta-final {
  position: relative;
  padding: clamp(100px, 12vw, 160px) 0;
  overflow: hidden;
}

.cta-final__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-black) 0%, var(--color-gray-900) 50%, #0D1B2A 100%);
}

.cta-final__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(3, 187, 224, 0.15) 0%, transparent 60%);
}

.cta-final__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 80%, rgba(3, 187, 224, 0.08) 0%, transparent 50%);
}

.cta-final__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.cta-final__title {
  font-family: var(--font-logo);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--color-white);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  
}

.cta-final__subtitle {
  font-size: clamp(1.2rem, 1.2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 40px;
}

.cta-final__content .btn svg {
  width: 22px;
  height: 22px;
}
.cta-final__video {
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
  border-radius: 20px;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--color-black);
  color: rgba(255, 255, 255, 0.6);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand img {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
  border-radius: 4px;
}

.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.footer__contact address {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer__link {
  font-size: 0.9rem;
  color: var(--color-accent);
  transition: opacity var(--transition-fast);
}

.footer__link:hover {
  opacity: 0.8;
}

.footer__social-links {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-base);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__social-link:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-3px);
}

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer__bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   Scroll Reveal
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal--delay {
  transition-delay: 0.15s;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .sobre__grid,
  .fiscal__grid,
  .localizacao__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .ambiente-card {
    grid-template-columns: 1fr;
  }

  .ambiente-gallery {
    min-height: 320px;
  }

  .planos__benefits-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.mobile-break {
  display: none;
}
@media (max-width: 768px) {
  .header__toggle {
    display: flex;
  }
  .hero__title {
    font-size: 2.2rem;
}
  .desktop-break {
    display: none;
  }
  .subtitle-no-break {
    white-space: nowrap;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: right var(--transition-base);
    padding: 40px;
  }
  .header__nav .header__link {
    color: #fff;
}
  .header__nav.open {
    right: 0;
  }
  .header--scrolled .header__toggle.active span {
    background: #fff;
}
  .header__menu {
    flex-direction: column;
    gap: 28px;
  }

  .header__link {
    font-size: 1.1rem;
    color: var(--color-white);
  }

  .header__social {
    gap: 16px;
  }

  .header__icon {
    width: 48px;
    height: 48px;
  }

  .sobre__floating-card {
    left: 16px;
    bottom: -16px;
    padding: 16px 24px;
  }

  .ambiente-gallery__btn {
    opacity: 1;
    width: 36px;
    height: 36px;
  }

  .planos__table thead {
    display: none;
  }

  .planos__table,
  .planos__table tbody,
  .planos__table tr,
  .planos__table td {
    display: block;
    width: 100%;
  }

  .planos__table tr {
    padding: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .planos__table td {
    padding: 6px 0;
    border: none;
    display: flex;
    flex-direction: column;
  }

  .planos__table td::before {
    content: attr(data-label);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-gray-500);
    margin-bottom: 4px;
  }

  .planos__benefits-list {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero__scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 14px 24px;
    font-size: 0.9rem;
  }

  .btn--xl {
    padding: 18px 32px;
    font-size: 1rem;
    width: 100%;
  }

  .ambiente-card__info {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}
/* PRELOADER */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background-color: #ffffff;

  opacity: 1;
  visibility: visible;

  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

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

.preloader__logo {
  width: 190px;
  max-width: 55vw;
  height: auto;

  animation: preloaderLogo 1.4s ease-in-out infinite alternate;
}

.preloader__line {
  width: 150px;
  height: 2px;
  margin-top: 28px;

  background-color: rgba(0, 0, 0, 0.12);
  overflow: hidden;
  position: relative;
}

.preloader__line::after {
  content: "";
  position: absolute;
  inset: 0;

  width: 45%;
  background-color: #000000;

  animation: preloaderLine 1.2s ease-in-out infinite;
}

@keyframes preloaderLogo {
  from {
    opacity: 0.55;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes preloaderLine {
  from {
    transform: translateX(-110%);
  }

  to {
    transform: translateX(250%);
  }
}
@media (max-width: 768px) {
  .hero__overlay {
    background: linear-gradient(
      105deg,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.65) 50%,
      rgba(0, 0, 0, 0.45) 100%
    );
  }
}