/* ==========================================================================
   RESET E VARIÁVEIS
   ========================================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Tipografia */
  --font-heading: "Oswald", sans-serif;
  --font-body: "Source Sans 3", sans-serif;

  /* Cores sólidas */
  --color-white: #ffffff;
  --color-black: #0a0a0a;

  /* Cores com opacidade */
  --color-white-95: rgba(255, 255, 255, 0.95);
  --color-white-80: rgba(255, 255, 255, 0.8);
  --color-white-70: rgba(255, 255, 255, 0.7);
  --color-white-60: rgba(255, 255, 255, 0.6);
  --color-white-50: rgba(255, 255, 255, 0.5);
  --color-white-40: rgba(255, 255, 255, 0.4);
  --color-white-30: rgba(255, 255, 255, 0.3);
  --color-white-20: rgba(255, 255, 255, 0.2);
  --color-white-15: rgba(255, 255, 255, 0.15);
  --color-white-10: rgba(255, 255, 255, 0.1);

  /* Transições e sombras */
  --transition-default: 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  --shadow-elegant: 0 20px 35px -12px rgba(0, 0, 0, 0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  background-color: var(--color-black);
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ==========================================================================
   ACESSIBILIDADE
   ========================================================================== */
.sr-only {
  position: absolute;
  width: 0.1rem;
  height: 0.1rem;
  padding: 0;
  margin: -0.1rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

.skip-to-content {
  position: absolute;
  top: -4rem;
  left: 0;
  background: var(--color-white);
  color: var(--color-black);
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-weight: bold;
  z-index: 9999;
  transition: top 0.2s ease;
}

.skip-to-content:focus {
  top: 0;
  outline: 0.2rem solid var(--color-white);
  outline-offset: 0.2rem;
}

:focus-visible {
  outline: 0.2rem solid var(--color-white);
  outline-offset: 0.2rem;
  border-radius: 0.2rem;
}

/* Preferência por movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Preferência por alto contraste */
@media (prefers-contrast: high) {
  :root {
    --color-white: #ffffff;
    --color-black: #000000;
    --color-white-80: #ffffff;
    --color-white-60: #ffffff;
    --color-white-50: #ffffff;
    --color-white-40: #ffffff;
    --color-white-30: #ffffff;
    --color-white-20: #ffffff;
    --color-white-15: #ffffff;
    --color-white-10: #ffffff;
  }

  .btn-primary {
    border: 0.2rem solid currentColor;
    background: transparent;
  }

  .btn-primary:hover {
    background: var(--color-white);
    color: var(--color-black);
  }
}

/* ==========================================================================
   NAVEGAÇÃO
   ========================================================================== */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  transition: all var(--transition-default);
}

#nav.scrolled {
  background: rgba(0, 0, 0, 0.92);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  color: var(--color-white);
}

.nav-logo span {
  font-weight: 200;
  color: var(--color-white-70);
  margin-left: 0.25rem;
}

.nav-toggle {
  display: flex;
  background: none;
  border: none;
  flex-direction: column;
  gap: 0.35rem;
  z-index: 1001;
  cursor: pointer;
}

.nav-toggle span {
  width: 1.6rem;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition-default);
}

.nav-links {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  list-style: none;
  text-transform: uppercase;
}

.nav-links.open {
  opacity: 1;
  visibility: visible;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--color-white-50);
  transition: var(--transition-default);
}

.nav-links a:hover,
.nav-links a.active {
  background-color: var(--color-white-15);
  color: var(--color-white);
  padding: 0.6rem 0.8rem;
  border-radius: 0.25rem;
}

/* ==========================================================================
   MENU HUB
   ========================================================================== */
.app-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  backdrop-filter: blur(20px);
  background: rgba(5, 12, 20, 0.9);
  border-top: 1px solid rgba(201, 160, 61, 0.4);
  padding: 0.4rem 0.5rem;
}

.app-nav .nav-container {
  max-width: 90rem;
  margin: 0 auto 0.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0 0.5rem;
}

.nav-explore-label {
  font-size: 0.65rem;
  color: #a0aec0;
  letter-spacing: 0.03em;
  margin: 0 0 0.15rem 0;
  padding: 0;
  opacity: 0.9;
  text-align: center;
}

.nav-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.2rem;
}

.nav-item {
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.4rem 0.6rem;
  border-radius: 1rem;
  font-size: 0.7rem;
  font-weight: 500;
  color: #cbd5e0;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.nav-item i {
  font-size: 1rem;
}

.nav-item span {
  font-size: 0.65rem;
}

.nav-item:hover {
  background: rgba(201, 160, 61, 0.2);
  color: #e0b65a;
}

.nav-item.active {
  background: linear-gradient(
    120deg,
    rgba(201, 160, 61, 0.25),
    rgba(201, 160, 61, 0.1)
  );
  color: #e0b65a;
  box-shadow: 0 0 8px rgba(201, 160, 61, 0.3);
  border: 0.5px solid rgba(201, 160, 61, 0.5);
}

/* ==========================================================================
   PRELOADER (tela de carregamento)
   ========================================================================== */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: radial-gradient(
    circle at top,
    #102a43 0,
    #050c12 55%,
    #020509 100%
  );
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--primary-light);
  animation: spin 1s linear infinite;
  z-index: 10001;
}

#loader::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--primary);
  animation: spin 2s linear infinite;
}

#loader::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--secondary);
  animation: spin 1.5s linear infinite;
}

.loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background: radial-gradient(
    circle at top,
    #102a43 0,
    #050c12 55%,
    #020509 100%
  );
  z-index: 10000;
  transform: translateX(0);
  transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loader-section.section-left {
  left: 0;
}

.loader-section.section-right {
  right: 0;
}

.loaded #loader-wrapper .loader-section.section-left {
  transform: translateX(-100%);
}

.loaded #loader-wrapper .loader-section.section-right {
  transform: translateX(100%);
}

.loaded #loader {
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.loaded #loader-wrapper {
  visibility: hidden;
  transform: translateY(-100%);
  transition:
    visibility 0s 0.6s,
    transform 0.6s ease-out;
}

/* ==========================================================================
   SEÇÕES PARALLAX
   ========================================================================== */
.parallax-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
  will-change: transform;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.overlay-dark {
  background: rgba(0, 0, 0, 0.75);
}

.overlay-light {
  background: rgba(0, 0, 0, 0.4);
}

.section-content {
  position: relative;
  z-index: 2;
  max-width: 75rem;
  width: 100%;
  padding: 4rem 1.5rem;
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  background: var(--color-white-15);
  padding: 0.3rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(2.2rem, 8vw, 4rem);
  letter-spacing: 0.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-title {
  font-weight: 500;
  font-size: clamp(2.5rem, 10vw, 5rem);
}

.hero-badge {
  font-size: 0.7rem;
  letter-spacing: 0.3rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.hero-line {
  width: 5rem;
  height: 1px;
  background: var(--color-white-50);
  margin: 1.2rem auto;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.2rem;
  border: 1px solid var(--color-white-50);
  padding: 1rem 2.2rem;
  text-transform: uppercase;
  background: transparent;
  transition: var(--transition-default);
  font-weight: 400;
  color: var(--color-white);
  cursor: pointer;
}

.btn-primary i {
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  background: var(--color-white);
  color: #111;
  border-color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-elegant);
}

.btn-primary:hover i {
  transform: translateX(5px);
}

.btn-glow:hover {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   ABOUT, SERVICES, GALLERY
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.about-card {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  padding: 2rem;
  border: 1px solid var(--color-white-15);
  transition:
    transform 0.4s,
    border-color 0.2s;
}

.about-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-white-40);
}

.about-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.service-item {
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 0.5rem;
  backdrop-filter: blur(4px);
  transition: all 0.3s;
  border-bottom: 2px solid transparent;
}

.service-item:hover {
  border-bottom-color: var(--color-white-70);
  background: rgba(0, 0, 0, 0.7);
  transform: scale(1.02);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-price {
  margin-top: 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
  font-weight: 500;
  color: var(--color-white-80);
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item--large {
  aspect-ratio: 16/9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 2rem;
  color: white;
  transform: scale(0.8);
  transition: transform 0.2s;
}

.stats-row {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-white-15);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.2rem;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  opacity: 0.8;
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 40rem;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.9rem;
}

.social-links-wrap {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  transition: all 0.2s;
}

.social-item i {
  font-size: 1.8rem;
  transition: transform 0.2s;
}

.social-item:hover i {
  transform: translateY(-5px) scale(1.1);
  color: var(--color-white);
}

/* ==========================================================================
   FORMULÁRIO DO CTA
   ========================================================================== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-width: 40rem;
  margin: 2rem auto 0;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-white-20);
  border-radius: 0.5rem;
}

.form-col {
  flex: 1;
}

.form-group {
  margin-bottom: 1rem;
}

.form-control {
  display: block;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--color-white-20);
  padding: 0.6rem;
  color: white;
  font-family: var(--font-body);
  border-radius: 0.25rem;
  transition: all 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-white-60);
  background: rgba(0, 0, 0, 0.6);
}

.phone-container {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

#country-code {
  flex: 0 1 33%;
  min-width: 70px;
  cursor: pointer;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

#phone {
  flex: 1 0 67%;
  font-family: monospace;
  font-size: 1rem;
}

.map {
  width: 100%;
  height: 250px;
  border-radius: 0.5rem;
}

.btn-form {
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  width: 100%;
}

#form-status {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--color-white-80);
}

/* ==========================================================================
   WHATSAPP FLUTUANTE
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 7rem;
  right: 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-float i {
  font-size: 1.8rem;
  color: var(--color-white);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float:hover i {
  transform: scale(1.05);
}

.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.5);
  pointer-events: none;
  animation: pulse-wave 3s ease-out infinite;
}

.pulse-ring.delay-1 {
  animation-delay: 0.8s;
}

.pulse-ring.delay-2 {
  animation-delay: 1.6s;
}

/* ==========================================================================
   MODAL FLUTUANTE
   ========================================================================== */
.floating-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #1e1e1e 0%, #0a0a0a 100%);
  border-top: 3px solid var(--color-white-60);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  visibility: hidden;
}

.floating-modal.show {
  transform: translateY(0);
  visibility: visible;
}

.modal-container {
  max-width: 37.5rem;
  margin: 0 auto;
  padding: 1.5rem 2rem 2rem;
  position: relative;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 1rem;
}

.modal-title {
  color: var(--color-white);
  font-size: 1.6rem;
  margin: 0;
  letter-spacing: 1px;
  font-family: var(--font-heading);
}

.modal-close {
  background: none;
  border: none;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--color-white-60);
  cursor: pointer;
  transition: color 0.2s ease;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.modal-close:hover {
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.1);
}

.modal-text {
  color: #ddd;
  margin-bottom: 1.2rem;
  font-size: 1rem;
  text-align: left;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  justify-content: center;
}

.modal-form .form-group {
  margin-bottom: 1rem;
}

.modal-form .form-control {
  background-color: #2a2a2a;
  border-color: #444;
  color: #fff;
}

.modal-form .form-control:focus {
  border-color: var(--color-white-60);
  background-color: #333;
}

.modal-status {
  margin: 0.8rem 0;
  font-size: 1.3rem;
  text-align: center;
  color: #ffaa66;
}

.modal-submit {
  text-align: center;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  margin: 0 auto;
  width: 100%;
}

/* ==========================================================================
   RODAPÉ
   ========================================================================== */
#footer {
  background: linear-gradient(135deg, #050505 0%, #0f0f0f 100%);
  position: relative;
  margin-top: 0;
  padding: 0;
  font-size: 0.875rem;
}

.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: translateY(-98%);
}

.footer-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.wave-fill {
  fill: #0f0f0f;
}

.footer-container {
  max-width: 90rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 1.5rem;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-col {
  animation: fadeInUp 0.6s ease backwards;
}

.footer-col:nth-child(1) {
  animation-delay: 0.1s;
}

.footer-col:nth-child(2) {
  animation-delay: 0.2s;
}

.footer-col:nth-child(3) {
  animation-delay: 0.3s;
}

.footer-col:nth-child(4) {
  animation-delay: 0.4s;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
  background: linear-gradient(135deg, #fff 0%, #ccc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-logo span {
  font-weight: 200;
  background: linear-gradient(135deg, #aaa 0%, #666 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-left: 0.25rem;
}

.footer-description {
  color: var(--color-white-60);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  font-size: 0.85rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 2.3rem;
  height: 2.3rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  color: var(--color-white-70);
  font-size: 1.1rem;
}

.social-icon:hover {
  background: #25d366;
  color: white;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.social-icon:nth-child(1):hover {
  background: #e4405f;
}

.social-icon:nth-child(2):hover {
  background: #25d366;
}

.social-icon:nth-child(3):hover {
  background: #1877f2;
}

.social-icon:nth-child(4):hover {
  background: #000000;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.15rem;
  margin-bottom: 1.2rem;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: -0.4rem;
  left: 0;
  width: 2rem;
  height: 2px;
  background: var(--color-white-40);
  transition: width 0.3s ease;
}

.footer-col:hover .footer-title::after {
  width: 3rem;
  background: var(--color-white);
}

.footer-hours,
.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-hours li,
.footer-contact li {
  display: flex;
  justify-content: space-between;
  color: var(--color-white-70);
  font-size: 0.85rem;
  transition:
    transform 0.2s,
    color 0.2s;
}

.footer-hours li:hover,
.footer-contact li:hover {
  color: var(--color-white);
  transform: translateX(5px);
}

.footer-contact li {
  gap: 0.8rem;
  justify-content: flex-start;
}

.footer-contact i {
  width: 1.3rem;
  color: var(--color-white-50);
  transition: color 0.2s;
}

.footer-contact li:hover i {
  color: var(--color-white);
}

.footer-featured {
  margin-top: 0.3rem;
  padding-top: 0.3rem;
  border-top: 1px dashed var(--color-white-15);
}

.footer-featured span:first-child {
  font-weight: 600;
  color: var(--color-white-80);
}

.footer-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2rem;
  padding: 0.5rem 1rem;
  margin-top: 1rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.footer-badge:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.02);
}

.footer-badge i {
  font-size: 1rem;
}

.footer-bottom {
  border-top: 1px solid var(--color-white-10);
  padding-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-white-50);
  margin-bottom: 5rem;
}

.footer-credits {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
}

.footer-copyright p,
.footer-credits p {
  display: inline-block;
  color: var(--color-white-80);
}

.footer-credits a {
  color: var(--color-white);
  transition: color 0.2s;
  font-weight: 500;
}

.footer-credits a:hover {
  color: white;
  text-decoration: underline;
}

.heartbeat {
  color: #ff3366;
  animation: heartbeat 1.5s ease infinite;
  display: inline-block;
  margin: 0 0.2rem;
}

.footer-map {
  overflow: hidden;
  border-radius: 0.5rem;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.footer-map:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */
@media (min-width: 36rem) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item--large {
    grid-column: span 2;
  }

  .gallery-mosaic .gallery-item:last-child {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
  }

  .stats-row {
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (min-width: 57rem) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    height: auto;
    background: none;
    backdrop-filter: none;
    flex-direction: row;
    opacity: 1;
    visibility: visible;
    gap: 2rem;
  }

  .nav-links a {
    font-size: 0.85rem;
    letter-spacing: 0.15rem;
  }

  .about-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-mosaic {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-item--large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
  }

  .gallery-mosaic .gallery-item:last-child {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: auto;
  }

  .gallery-mosaic .gallery-item:nth-child(2),
  .gallery-mosaic .gallery-item:nth-child(3) {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: auto;
  }

  .contact-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .contact-info,
  .social-links-wrap {
    flex: 1;
    min-width: 200px;
  }

  .whatsapp-float {
    bottom: 8rem;
    right: 2rem;
    width: 4rem;
    height: 4rem;
  }

  .whatsapp-float i {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .footer-wave svg {
    height: 80px;
  }

  .map {
    height: 280px;
  }
}

@media (min-width: 64rem) {
  .app-nav {
    padding: 0.6rem 0.5rem;
  }

  .nav-explore-label {
    font-size: 0.9rem;
    /* margin-bottom: 0.25rem; */
  }

  .nav-buttons {
    gap: 0.5rem;
  }

  .nav-item {
    flex-direction: row;
    padding: 0.55rem 1.2rem;
    border-radius: 2.5rem;
    font-size: 0.9rem;
    gap: 0.75rem;
  }

  .nav-item i {
    font-size: 1.2rem;
  }

  .nav-item span {
    font-size: 1.1rem;
  }
}

@media (min-width: 75rem) {
  .section-content {
    padding: 5rem 2rem;
  }

  .about-card {
    padding: 2.5rem;
  }

  .whatsapp-float {
    right: 2.5rem;
    width: 4.5rem;
    height: 4.5rem;
  }

  .whatsapp-float i {
    font-size: 2.2rem;
  }

  .footer-container {
    padding: 4rem 2rem 2rem;
  }

  .footer-wave svg {
    height: 100px;
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 5rem;
  }
}

@media (min-width: 90rem) {
  .nav-container {
    max-width: 1400px;
  }

  .section-title {
    font-size: 3.5rem;
  }
}

/* ==========================================================================
   KEYFRAMES
   ========================================================================== */
@keyframes pulse-wave {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

@keyframes waveMove {
  0% {
    transform: translateX(0) translateY(0);
  }

  100% {
    transform: translateX(-50px) translateY(5px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
