


.logo {
  display: flex;
  align-items: center;
  gap: 12px; /* espaço entre "marta" e o toggle */
}

/* Logo default uses -50 */
.logo-text {
  font-family: 'ExposureItalic-70', 'PPMori', sans-serif;
  font-size: 1.375em; /* 22px */
  color: #333;
  text-decoration: none;
  font-style: italic;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'PPMori', sans-serif;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

body {
  background-color: #ffffff;
  color: #333;
  position: relative;
  overflow-x: hidden;
  font-size: 16px; /* Base font size for em calculations */
}

/* Header Styles */
header {
  padding: 1.875em 2.5em;
  position: sticky;
  top: 0;
  background-color: transparent;
  z-index: 100;
}

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

.header-top-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.logo-link {
  text-decoration: none;
}

/* .logo-link:hover .logo-text {
  color: #ED6D2E;
  transition: color 0.2s ease;
} */

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: 'ABCDiatypeMono', monospace;
  font-size: 1.125em; /* 18px */
  font-weight: 300;
}

.desktop-nav a {
  font-family: 'ABCDiatypeMono', monospace;
  text-decoration: none;
  color: #333;
  font-weight: 300;
  transition: color 0.2s ease;
  margin-right: 0.375em; /* 6px */
  
}

/* .desktop-nav a:hover {
  color: #ED6D2E;
} */

.desktop-nav a.active {
  color: #333;
  font-weight: 300;
  font-style: italic;
}

.search-container {
  cursor: pointer;
}

.search-text {
  font-family: 'ExposureItalic-70', 'PPMori', sans-serif;
  font-size: 1.375em; /* 22px */
  font-style: italic;
  color: #333;
  transition: color 0.2s ease;
}

/* Main Content - Inspo Container */
.inspo-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 5em 2.5em; /* 80px 40px */
  display: flex;
  flex-direction: column;
  gap: 2.5em; /* 40px */
}

.inspo-item {
  width: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.inspo-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  cursor: pointer;
}

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

.inspo-item:hover img {
  transform: scale(1.02);
}

/* Footer Styles */
footer {
  position: relative;
  height: 200px;
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  padding: 1.75em 2.5em;
}

.interactive-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}

.footer-left p {
  color: #333;
  font-size: 0.875em; /* 14px */
  font-weight: normal;
  margin: 0;
  font-family: 'ABCDiatypeMono', 'PPMori', sans-serif;
}

.footer-right {
  display: flex;
  gap: 1.5em; /* 24px */
}

.footer-right a {
  color: #333;
  text-decoration: none;
  font-size: 0.875em; /* 14px */
  font-weight: normal;
  transition: opacity 0.2s ease;
  font-family: 'ABCDiatypeMono', 'PPMori', sans-serif;
}

.footer-right a:hover {
  opacity: 0.7;
}

.footer-center {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9375em; /* 15px */
  text-decoration: none;
  color: inherit;
  padding: 1.25em 0; /* 20px */
}

.footer-line {
  width: 31.25em; /* 500px */
  height: 0.3125em; /* 5px */
  background-color: #333;
  transition: all 0.2s ease;
}

.get-in-text-top,
.get-in-text-bottom {
  font-size: 4em; /* 64px */
  font-weight: normal;
  color: #333;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  line-height: 1.2;
  font-family: 'PPNeueMontreal', sans-serif;
  padding: 0.3125em 0; /* 5px */
}

.footer-center:hover .get-in-text-top,
.footer-center:hover .get-in-text-bottom {
  opacity: 1;
}

.footer-center:hover .footer-line {
  width: 32.5em; /* 520px */
}

.footer-center-mobile {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.9375em; /* 15px */
  width: 100%;
  margin-bottom: 1.875em; /* 30px */
  text-decoration: none;
  color: #333;
}

.footer-line-mobile {
  width: 15.625em; /* 250px */
  height: 0.1875em; /* 3px */
  background-color: #333;
}

.get-in-text-top-mobile,
.get-in-text-bottom-mobile {
  font-size: 2.5em; /* 40px */
  font-weight: normal;
  color: #333;
  line-height: 1.2;
  font-family: 'PPNeueMontreal', sans-serif;
  padding: 0.3125em 0; /* 5px */
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  header {
    padding: 1.25em 1.875em; /* 20px 30px */
  }

  .header-top {
    margin-bottom: 0.375em; /* 6px */
    justify-content: center; /* Center logo + toggle */
  }

  .header-top-right {
    display: none; /* Hide search on mobile */
  }

  .header-bottom {
    display: flex; /* Keep nav visible */
    justify-content: center; /* Center navigation */
  }

  .desktop-nav {
    display: flex; /* Keep nav visible */
    font-size: 1em; /* 16px */
  }

  .theme-toggle {
    display: flex; /* Keep toggle visible */
  }

  .search-text {
    font-size: 1.5em; /* 24px */
  }

  .inspo-container {
    padding: 2.5em 1.875em; /* 40px 30px */
    gap: 1.875em; /* 30px */
  }

  .inspo-item {
    aspect-ratio: 1 / 1; /* Square images on mobile */
  }

  footer {
    padding: 0 1.875em; /* 30px */
    height: 9.375em; /* 150px */
    padding-bottom: 1.25em; /* 20px */
  }

  .footer-center {
    display: none !important;
  }

  .footer-center-mobile {
    display: none !important;
  }
}

@media (max-width: 480px) {
  header {
    padding: 1.25em 1.25em; /* 20px */
  }

  .header-top {
    justify-content: center; /* Center logo + toggle */
  }

  .header-top-right {
    display: none; /* Hide search on mobile */
  }

  .header-bottom {
    display: flex; /* Keep nav visible */
    justify-content: center; /* Center navigation */
  }

  .logo-text {
    font-size: 1.25em; /* 20px */
  }

  .search-text {
    font-size: 1.25em; /* 20px */
  }

  .desktop-nav {
    font-size: 1em; /* 16px */
  }

  .inspo-container {
    padding: 1.875em 1.25em; /* 30px 20px */
    gap: 1.5em; /* 24px */
  }

  .inspo-item {
    aspect-ratio: 1 / 1; /* Square images on mobile */
  }

  footer {
      height: auto;
      min-height: 0;                        /* era 250px */
      padding: 20px 20px 20px 20px;         /* era 60px no topo */
      display: block;
  
  }

  .interactive-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    height: 100%;
    justify-content: center;
    padding-top: 1.25em; /* 20px */
  }

  .footer-center {
    display: none;
  }

  .footer-center-mobile {
    display: none;
    order: 1;
    margin-bottom: 20px;                  /* era 40px */
  }
  
  .footer-center-mobile .get-in-text-top-mobile,
  .footer-center-mobile .get-in-text-bottom-mobile {
    font-size: 2.5em; /* 40px */
    font-weight: normal;
    color: #333;
    line-height: 1.2;
    font-family: 'PPNeueMontreal', sans-serif;
    padding: 0.3125em 0; /* 5px */
  }

  .footer-line-mobile {
    width: 15.625em; /* 250px */
    height: 0.1875em; /* 3px */
    background-color: #333;
  }

  .footer-left {
    order: 3;
    margin-top: 0;
  }

  .footer-right {
    order: 4;
    margin-top: 0.9375em; /* 15px */
    justify-content: center;
    gap: 1.875em; /* 30px */
  }

  .footer-left p,
  .footer-right a {
    font-size: 0.75em; /* 12px */
  }
}/* ===== DARK MODE TOGGLE - iOS STYLE (20% menor) ===== */
.theme-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.toggle-label {
  font-size: 0.875em; /* 14px */
  font-family: 'ABCDiatypeMono', monospace;
  color: #333;
}

.star-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: none;
  display: flex;
  align-items: center;
  line-height: 1;
}

.star-icon {
  width: 1em;
  height: 1em;
  fill: #D4AF37;
  stroke: #D4AF37;
  stroke-width: 1;
  transition: fill 0.3s ease, stroke 0.3s ease, transform 0.3s ease;
}

.star-toggle:hover .star-icon {
  transform: scale(1.15);
}

body.dark-mode .star-icon {
  fill: #C0C0C0;
  stroke: #C0C0C0;
}


/* Dark Mode Styles */
body.dark-mode {
  background-color: black;
  color: #ffffff;
}

body.dark-mode .logo-text,
body.dark-mode .desktop-nav a,
body.dark-mode .search-text,
body.dark-mode .footer-left p,
body.dark-mode .footer-right a,
body.dark-mode .hamburger span {
  color: #ffffff;
}

body.dark-mode .footer-line,
body.dark-mode .footer-line-mobile {
  background-color: #ffffff;
}

body.dark-mode .get-in-text-top,
body.dark-mode .get-in-text-bottom,
body.dark-mode .get-in-text-top-mobile,
body.dark-mode .get-in-text-bottom-mobile {
  color: #ffffff;
}

/* Light Mode */
body.light-mode {
  background-color: #ffffff;
  color: black;
}


/* ===== HOVER IMAGE EFFECT ===== */
.hover-image-preview {
  position: fixed;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 9998;
  width: 12.5em; /* 200px */
  height: auto;
  border-radius: 0.5em; /* 8px */
  overflow: hidden;
  box-shadow: 0 0.25em 1.25em rgba(0, 0, 0, 0.15); /* 0 4px 20px */
}

.hover-image-preview img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hover-image-preview.active {
  opacity: 1;
}

/* Hide hover image on mobile */
@media (max-width: 768px) {
  .hover-image-preview {
    display: none;
  }
}