/* Global Style System - Mejaki Planejados */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;800&family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@300;400;700;800&family=Outfit:wght@300;400;600;700;800&family=Poppins:wght@400;700;800&family=Urbanist:wght@300;400;600;700;800&family=Plus+Jakarta+Sans:wght@400;700;800&display=swap');

:root {
  --primary-color: #e97652; /* Vivid Orange */
  --primary-hover: #d36442;
  --secondary-color: #111111; /* Deep charcoal black */
  --accent-color: #f5f5f5;
  --text-main: #222222;
  --text-muted: #666666;
  --bg-color: #ffffff;
  --bg-alt: #fafafa;
  --border-color: rgba(0, 0, 0, 0.06);

  --font-sans: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.5rem;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --secondary-color: #ffffff; /* Heading text color should be white in dark mode */
    --text-main: #f3f3f3;
    --text-muted: #a0a0a0;
    --bg-color: #121212;
    --bg-alt: #1a1a1a;
    --border-color: rgba(255, 255, 255, 0.08);
  }
}

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

html, body {
  max-width: 100vw;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  color: var(--text-main);
  background-color: var(--bg-color);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding-top: 10rem;
  padding-bottom: 6rem;
  min-height: 85vh;
}

/* Text Outline Effect for Luxury Titles */
.textOutline {
  color: transparent !important;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
}

@media (prefers-color-scheme: dark) {
  .textOutline {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
  }
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.01);
  transition: all var(--transition-normal);
}

@media (prefers-color-scheme: dark) {
  .header {
    background: rgba(18, 18, 18, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.logoWrapper {
  display: flex;
  align-items: center;
  transition: opacity var(--transition-fast);
}

.logoWrapper:hover {
  opacity: 0.85;
}

.logoImg {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.05));
}


.menuContainer {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}

.menu {
  display: flex;
  list-style: none;
  gap: 3rem;
  margin: 0;
  padding: 0;
}

.menuLink {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

.menuLink::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width var(--transition-fast);
}

.menuLink:hover::after,
.menuLink.active::after {
  width: 100%;
}

.menuLink:hover,
.menuLink.active {
  color: var(--primary-color);
}

.headerActions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.instagramLink {
  color: var(--text-main);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.instagramLink:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.headerCta {
  background: transparent;
  color: var(--primary-color);
  border: 1.5px solid var(--primary-color);
  padding: 0.6rem 1.6rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: all var(--transition-fast);
}

.headerCta:hover {
  background-color: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(233, 118, 82, 0.2);
}

/* Mobile Hamburger Menu Styles */
.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 110;
}

.hamburgerLine {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-main);
  margin: 5px 0;
  transition: all var(--transition-fast);
}

/* Mobile Menu Open Toggle states */
.hamburger.open .hamburgerLine:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open .hamburgerLine:nth-child(2) {
  opacity: 0;
}
.hamburger.open .hamburgerLine:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobileDrawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-color);
  z-index: 105;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobileDrawer.open {
  right: 0;
}

.mobileMenu {
  display: flex;
  flex-direction: column;
  list-style: none;
  align-items: center;
  gap: 2rem;
}

.mobileMenuLink {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-main);
}

.mobileMenuLink:hover,
.mobileMenuLink.active {
  color: var(--primary-color);
}

@media (max-width: 900px) {
  .menu {
    display: none;
  }
  .hamburger {
    display: block;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: calc(100vh - 90px);
  margin-top: 90px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #0d0d0d;
}

.heroImage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-slow);
}

.hero:hover .heroImage {
  transform: scale(1.02);
}

.heroOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(13, 13, 13, 0.9) 0%,
    rgba(13, 13, 13, 0.6) 50%,
    rgba(13, 13, 13, 0.3) 100%
  );
  z-index: 1;
}

.heroContainer {
  position: relative;
  z-index: 2;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.heroTextContent {
  color: #fff;
  max-width: 650px;
}

.heroBadge {
  display: inline-block;
  background: rgba(233, 118, 82, 0.1);
  border: 1px solid rgba(233, 118, 82, 0.4);
  color: var(--primary-color);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.heroTitle {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 0.95;
  margin-bottom: 2rem;
  letter-spacing: -1px;
}

.solidTitle {
  color: var(--primary-color);
}

.heroSubtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}

.quoteBlock {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.quoteLine {
  width: 2px;
  background-color: var(--primary-color);
}

.heroQuote {
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  line-height: 1.4;
}

.heroActions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.heroPrimaryCta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  background-color: var(--primary-color);
  color: #fff;
  padding: 1.1rem 2.2rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 20px rgba(233, 118, 82, 0.35);
}

.heroPrimaryCta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 30%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
}

.heroPrimaryCta:hover::after {
  left: 160%;
  transition: left 0.75s ease-in-out;
}

.heroPrimaryCta:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2.5px);
  box-shadow: 0 8px 30px rgba(233, 118, 82, 0.55);
}

.heroSecondaryCta {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  padding: 1.1rem 2.2rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.heroSecondaryCta:hover {
  border-color: #fff;
  background-color: #fff;
  color: #111;
  transform: translateY(-2.5px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.25);
}

/* Manifesto Section */
.manifestoSection {
  padding: 8rem 0;
  background-color: var(--bg-color);
  border-bottom: 1px solid var(--border-color);
}

.manifestoInner {
  max-width: 1000px;
  margin: 0 auto;
}

.manifestoBadge {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.manifestoTitle {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 3rem;
  letter-spacing: -0.5px;
}

.manifestoGrid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: start;
}

.manifestoMainCol p {
  font-size: 1.4rem;
  line-height: 1.7;
  color: var(--text-main);
  font-weight: 300;
  margin: 0;
}

.manifestoDetailCol {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.manifestoDetailCol p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0;
}

.manifestoDivider {
  width: 50px;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.15);
}

@media (prefers-color-scheme: dark) {
  .manifestoDivider {
    background-color: rgba(255, 255, 255, 0.15);
  }
}

.signature {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary-color);
}

/* Shared Section Header */
.sectionHeader {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem auto;
}

.sectionBadge {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 0.75rem;
}

.sectionTitle {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.sectionSubtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* Ambientes Portfolio Asymmetric Grid (Home) */
.ambientesSection {
  padding: 8rem 0;
  background-color: var(--bg-alt);
}

.staggeredGrid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 5rem 3rem;
}

.portfolioItem {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.itemWide {
  grid-column: span 7;
}

.itemNarrow {
  grid-column: span 5;
}

.itemOffset {
  margin-top: 5rem;
}

.itemImageContainer {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
}

.portfolioImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.portfolioItem:hover .portfolioImg {
  transform: scale(1.04);
}

.itemNumber {
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-color);
  background: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  z-index: 2;
}

.itemMeta h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.itemMeta p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.itemLink {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  transition: all var(--transition-fast);
}

@media (prefers-color-scheme: dark) {
  .itemLink {
    border-bottom-color: rgba(255, 255, 255, 0.15);
  }
}

.arrow {
  transition: transform var(--transition-fast);
}

.itemLink:hover {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

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

/* Technical Details Section */
.technicalSection {
  padding: 8rem 0;
  background-color: var(--bg-color);
  border-bottom: 1px solid var(--border-color);
}

.technicalGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.techBadge {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.techTitle {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
}

.techDesc {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.techList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.techList li {
  position: relative;
  padding-left: 2rem;
  font-size: 1.05rem;
  color: var(--text-main);
  line-height: 1.6;
}

.techList li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 10px;
  height: 2px;
  background-color: var(--primary-color);
}

.blueprintFrame {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
}

.blueprintImage {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blueprintFrame:hover .blueprintImage {
  transform: scale(1.015);
}

/* Materiality / Samples Section */
.samplesSection {
  padding: 8rem 0;
  background-color: var(--bg-alt);
}

/* Finishes Carousel Styles */
.carouselWrapper {
  position: relative;
  width: 100%;
  margin-top: 2rem;
}

.carouselContainer {
  display: flex;
  gap: 2.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 1.5rem 0.5rem 2.5rem 0.5rem;
  scrollbar-width: none;
}

.carouselContainer::-webkit-scrollbar {
  display: none;
}

.sampleCard {
  flex: 0 0 calc(25% - 1.875rem); /* 4 items on desktop */
  scroll-snap-align: start;
  background: var(--bg-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.sampleCard:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
  border-color: rgba(233, 118, 82, 0.2);
}

.sampleImageWrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.sampleCardImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sampleInfo {
  padding: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.sampleInfo h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.25rem;
}

.sampleInfo p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Nav Buttons */
.navBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

@media (prefers-color-scheme: light) {
  .navBtn {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  }
}

.navBtn:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
  transform: translateY(-50%) scale(1.08);
}

.leftBtn {
  left: -25px;
}

.rightBtn {
  right: -25px;
}

/* Progress track at the bottom */
.progressTrack {
  width: 120px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  margin: 1.5rem auto 0 auto;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

@media (prefers-color-scheme: light) {
  .progressTrack {
    background: rgba(0, 0, 0, 0.06);
  }
}

.progressBar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 10px;
  transition: width 0.15s ease-out;
  width: 0%;
}

/* Ambientes Page Styles */
.ambientesHeader {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ambientesBadge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.ambientesTitle {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.ambientesDesc {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.sectionBlock {
  margin-bottom: 6rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.ambientesSectionHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 1rem;
}

.ambientesSectionTitle {
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary-color);
  letter-spacing: 1px;
  margin: 0;
  position: relative;
}

.ambientesSectionTitle::after {
  content: '';
  position: absolute;
  bottom: -1.2rem;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.imageGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.imageCard {
  position: relative;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.imageCard:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.imageCard:hover .img {
  transform: scale(1.06);
}

.cardOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
  opacity: 0.8;
  transition: opacity var(--transition-normal);
}

.imageCard:hover .cardOverlay {
  opacity: 0.95;
}

.cardContent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
}

.cardContent h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.5px;
}

/* Quem Somos Page Styles */
.aboutHeader {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.aboutGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.introCol {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.introText {
  font-size: 1.15rem;
  color: var(--text-main);
  line-height: 1.8;
}

.introSub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  padding-left: 1.5rem;
  border-left: 3px solid var(--primary-color);
}

.cardCol {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.card {
  background: var(--bg-color);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--primary-color);
  transition: height var(--transition-normal);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card:hover::before {
  height: 100%;
}

.cardHeader {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.iconWrapper {
  background-color: rgba(233, 118, 82, 0.1);
  color: var(--primary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cardTitle {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 0;
}

.cardBody {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.cardBody ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cardBody li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.cardBody li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Contato Page Styles */
.contactGrid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contactInfoCol {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contactInfoCard {
  background: var(--bg-color);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contactInfoItem {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.iconCircle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: rgba(233, 118, 82, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contactInfoText h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.contactInfoText p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contactInfoText a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

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

.contactFormCol {
  background: var(--bg-alt);
  padding: 3.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.formTitle {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.formSubtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.contactForm {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.formGroup {
  display: flex;
  flex-direction: column;
}

.inputField {
  width: 100%;
  padding: 1.1rem 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  background: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

@media (prefers-color-scheme: dark) {
  .inputField {
    border-color: rgba(255, 255, 255, 0.08);
  }
}

.inputField:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(233, 118, 82, 0.15);
}

textarea.inputField {
  resize: vertical;
  min-height: 150px;
}

.submitBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: #fff;
  padding: 1.2rem 2.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: 0 10px 20px rgba(233, 118, 82, 0.2);
}

.submitBtn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 15px 25px rgba(233, 118, 82, 0.35);
}

/* Footer Styles */
.footer {
  width: 100%;
  background-color: #0e0e0e;
}

.contactBanner {
  background-color: #151515;
  color: #fff;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.contactBannerInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.bannerSmallText {
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  display: block;
}

.contactBannerText h2 {
  font-size: 1.8rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.3;
  color: #fff;
  letter-spacing: -0.5px;
}

.contactBannerPhone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.bannerPhoneLink {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -1px;
  transition: all var(--transition-fast);
}

.bannerPhoneLink:hover {
  color: var(--primary-color);
  transform: translateX(-4px);
}

.contactSection {
  background-color: #0e0e0e;
  color: #fff;
  padding: 7rem 0;
}

.contactInner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
}

.footerColTitle {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 3rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 0.75rem;
}

.footerColTitle::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 1px;
  background-color: var(--primary-color);
}

.formCol, .infoCol {
  width: 100%;
}

.footerContactForm {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footerInputField, .footerTextareaField {
  width: 100%;
  padding: 0.8rem 0;
  background-color: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 0;
  font-family: inherit;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.footerTextareaField {
  resize: vertical;
  min-height: 100px;
}

.footerInputField::placeholder, .footerTextareaField::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footerInputField:focus, .footerTextareaField:focus {
  outline: none;
  border-bottom-color: var(--primary-color);
}

.footerSubmitBtn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  padding: 0.9rem 2.2rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
  transition: all var(--transition-fast);
}

.footerSubmitBtn:hover {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(233, 118, 82, 0.25);
}

.footerSubmitBtn svg {
  transition: transform var(--transition-fast);
}

.footerSubmitBtn:hover svg {
  transform: translate(2px, -2px);
}

.infoItem {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.infoIcon {
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0.25rem;
}

.infoItem h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: #fff;
}

.infoItem p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.mailLink {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.bottomFooter {
  background-color: #080808;
  color: #555;
  padding: 2.5rem 0;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

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

.bottomLinks a {
  color: #555;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.bottomLinks a:hover {
  color: #aaa;
}

.subtleAdminLink {
  display: inline-flex;
  align-items: center;
  color: #555 !important;
  opacity: 0.3;
  transition: opacity var(--transition-fast), color var(--transition-fast);
}

.subtleAdminLink:hover {
  opacity: 0.8;
  color: var(--primary-color) !important;
}

/* ScrollReveal Core Classes */
.reveal, .reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-down {
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ScrollReveal Active State */
.reveal.revealed,
.reveal-up.revealed,
.reveal-down.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

.reveal-fade.revealed {
  opacity: 1;
}

/* Staggered Delay classes */
.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }
.delay-3 { transition-delay: 300ms; }
.delay-4 { transition-delay: 400ms; }
.delay-5 { transition-delay: 500ms; }
.delay-6 { transition-delay: 600ms; }
.delay-7 { transition-delay: 700ms; }
.delay-8 { transition-delay: 800ms; }

/* WhatsApp / Contact Attention-Grabber Animation */
@keyframes contactPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-3px) scale(1.025);
  }
}

.contactPulseEffect {
  animation: contactPulse 3s ease-in-out infinite;
  display: inline-flex !important;
}

.contactPulseEffect:hover {
  animation-play-state: paused;
}

/* Responsive Styles */
@media (max-width: 1100px) {
  .heroContainer {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  
  .heroTitle {
    font-size: 4rem;
  }
  
  .manifestoGrid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .staggeredGrid {
    gap: 4rem 2rem;
  }
  
  .itemWide, .itemNarrow {
    grid-column: span 6;
  }
  
  .itemOffset {
    margin-top: 0;
  }
  
  .technicalGrid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .blueprintFrame {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .sampleCard {
    flex: 0 0 calc(33.333% - 1.67rem); /* 3 items */
  }
  
  .leftBtn { left: -15px; }
  .rightBtn { right: -15px; }
}

@media (max-width: 900px) {
  .contactBannerInner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .contactBannerPhone {
    align-items: center;
  }
  
  .bannerPhoneLink {
    font-size: 2rem;
  }

  .contactInner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 6rem 0;
  }
  
  .heroTitle {
    font-size: 3.2rem;
  }
  
  .staggeredGrid {
    grid-template-columns: 1fr;
  }
  
  .itemWide, .itemNarrow {
    grid-column: span 12;
  }
  
  .itemImageContainer {
    height: 350px;
  }
  
  .manifestoSection, .ambientesSection, .technicalSection, .samplesSection {
    padding: 5rem 0;
  }
  
  .sampleCard {
    flex: 0 0 calc(50% - 1.25rem); /* 2 items */
  }
  
  .leftBtn { left: -10px; }
  .rightBtn { right: -10px; }
}

@media (max-width: 500px) {
  .heroTitle {
    font-size: 2.6rem;
  }
  
  .heroActions {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  
  .heroPrimaryCta, .heroSecondaryCta {
    justify-content: center;
  }
  
  .sampleCard {
    flex: 0 0 100%; /* 1 item */
  }
  
  .leftBtn {
    left: 5px;
    top: auto;
    bottom: -60px;
    transform: none;
  }
  
  .rightBtn {
    right: 5px;
    top: auto;
    bottom: -60px;
    transform: none;
  }
  
  .progressTrack {
    margin-top: 2rem;
  }
}
\n
/* Instagram Gallery Page Styles */
.gallerySection {
  background-color: #f3f5f8; /* Light grey-blue background as in print */
  padding: 8rem 0 6rem 0;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (prefers-color-scheme: dark) {
  .gallerySection {
    background-color: #1a1a1a;
  }
}

.instaHeader {
  text-align: center;
  margin-bottom: 3rem;
}

.instaBadge {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.instaTitle {
  font-family: 'Cinzel', serif; /* Serif font as in print */
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #0c2340; /* Dark navy color as in print */
  margin-bottom: 0.5rem;
}

@media (prefers-color-scheme: dark) {
  .instaTitle {
    color: #ffffff;
  }
}

.instaLine {
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 0.5rem auto 1.5rem auto;
  border-radius: 2px;
}

.instaSubtitle {
  font-size: 1.1rem;
  color: #555555;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

@media (prefers-color-scheme: dark) {
  .instaSubtitle {
    color: #cccccc;
  }
}

/* Instagram Feed Card */
.instaCard {
  width: 100%;
  max-width: 780px;
  background-color: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  margin: 0 auto;
}

@media (prefers-color-scheme: dark) {
  .instaCard {
    background-color: #121212;
    border-color: #333333;
  }
}

/* Profile Header Section */
.instaProfileHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid #efefef;
}

@media (prefers-color-scheme: dark) {
  .instaProfileHeader {
    border-bottom-color: #222222;
  }
}

.instaProfileLeft {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* Instagram Story Gradient Ring */
.instaAvatarRing {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  padding: 3px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
}

.instaAvatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #ffffff;
  background-color: #ffffff;
}

@media (prefers-color-scheme: dark) {
  .instaAvatar {
    border-color: #121212;
    background-color: #121212;
  }
}

.instaProfileText h3 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: #262626;
  margin: 0 0 0.2rem 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.instaProfileText .fullName {
  font-size: 0.9rem;
  color: #262626;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.instaProfileText p {
  font-size: 0.85rem;
  color: #8e8e8e;
  margin: 0;
}

@media (prefers-color-scheme: dark) {
  .instaProfileText h3,
  .instaProfileText .fullName {
    color: #ffffff;
  }
  .instaProfileText p {
    color: #a0a0a0;
  }
}

.instaProfileRight {
  color: #c13584; /* Instagram brand color */
}

/* Post Grid */
.instaGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px; /* Small gaps as in print */
  padding: 4px;
  background-color: #ffffff;
}

@media (prefers-color-scheme: dark) {
  .instaGrid {
    background-color: #121212;
  }
}

.instaItem {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
  background-color: #fafafa;
}

@media (prefers-color-scheme: dark) {
  .instaItem {
    background-color: #1a1a1a;
  }
}

.instaItemImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.instaItem:hover .instaItemImg {
  transform: scale(1.03);
}

/* Post Badges (video/reels indicator) */
.instaItemBadge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  padding: 4px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* Post Overlay on Hover */
.instaItemOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.instaItem:hover .instaItemOverlay {
  opacity: 1;
}

.instaStat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 1rem;
}

/* Footer Section */
.instaCardFooter {
  padding: 1.25rem;
  text-align: center;
  border-top: 1px solid #efefef;
  background-color: #ffffff;
}

@media (prefers-color-scheme: dark) {
  .instaCardFooter {
    border-top-color: #222222;
    background-color: #121212;
  }
}

.instaFollowBtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #0095f6; /* Instagram blue button */
  color: #ffffff;
  padding: 0.6rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background-color 0.2s ease;
}

.instaFollowBtn:hover {
  background-color: #0077cc;
  color: #ffffff;
}


/* Toast Notification Styles */
.toastNotification {
  position: fixed;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(233, 118, 82, 0.2);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 16px 20px;
  z-index: 9999;
  transform: translateX(150%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 340px;
}

.toastNotification.show {
  transform: translateX(0);
}

.toastContent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.toastIcon {
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.toastText h4 {
  font-family: var(--font-heading);
  margin: 0 0 4px 0;
  font-size: 0.95rem;
  color: #111111;
}

.toastText p {
  margin: 0;
  font-size: 0.82rem;
  color: #555555;
  line-height: 1.4;
}

@media (prefers-color-scheme: dark) {
  .toastNotification {
    background: rgba(18, 18, 18, 0.85);
    border-color: rgba(233, 118, 82, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  .toastText h4 {
    color: #ffffff;
  }
  .toastText p {
    color: #bbbbbb;
  }
}

/* ==========================================================================
   LANDING PAGE (HIGH CONVERSION) STYLES
   ========================================================================== */

.lpHeader {
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.lpPhoneLink {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  transition: color var(--transition-fast);
}

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

.lpBadge {
  margin-bottom: 1.5rem;
}

/* Hero Landing Page Grid */
.lpHero {
  position: relative;
  min-height: 100vh;
  padding-top: 130px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #0d0d0d;
}

.lpHeroImage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
}

.lpHeroOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(13, 13, 13, 0.95) 0%,
    rgba(13, 13, 13, 0.8) 50%,
    rgba(13, 13, 13, 0.5) 100%
  );
  z-index: 1;
}

.lpHeroContainer {
  position: relative;
  z-index: 2;
  width: 100%;
}

.lpHeroGrid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.lpHeroTitle {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.lpHeroSubtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Form Column Styles */
.lpLeadCard {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.lpLeadCard h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.lpLeadCard p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
  line-height: 1.4;
}

.lpLeadForm .formGroup {
  margin-bottom: 1.25rem;
}

.lpInputField,
.lpTextareaField {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.2rem;
  font-family: var(--font-sans);
  color: #ffffff;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.lpInputField:focus,
.lpTextareaField:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(233, 118, 82, 0.2);
}

.lpInputField::placeholder,
.lpTextareaField::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.lpTextareaField {
  resize: vertical;
}

.lpSubmitBtn {
  width: 100%;
  background-color: var(--primary-color);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  padding: 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 15px rgba(233, 118, 82, 0.3);
  position: relative;
  overflow: hidden;
}

.lpSubmitBtn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(233, 118, 82, 0.45);
}

/* Antes e Depois Section */
.lpAntesDepoisSection {
  padding: 8rem 0;
  background-color: var(--bg-alt);
}

.antesDepoisGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.comparisonCard {
  background-color: var(--bg-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.comparisonCard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.comparisonContainer {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  user-select: none;
}

.imgBeforeAfter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.imgAfter {
  z-index: 1;
}

.imgBeforeAfterWrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.imgBefore {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Garante que a imagem antes tenha sempre a largura total do card, independente do wrapper */
  min-width: 100%;
  width: auto;
  max-width: none;
}

.sliderRange {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
  margin: 0;
}

.sliderHandle {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 0;
  z-index: 5;
  transform: translateX(-50%);
  pointer-events: none;
}

.handleLine {
  position: absolute;
  top: 0;
  left: -1px;
  width: 2px;
  height: 100%;
  background: #ffffff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.handleArrow {
  position: absolute;
  top: 50%;
  width: 32px;
  height: 32px;
  background: var(--primary-color);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  user-select: none;
}

.leftArrow {
  left: -38px;
  transform: translateY(-50%);
}

.rightArrow {
  right: -38px;
  transform: translateY(-50%);
}

.comparisonLabel {
  padding: 1.5rem;
}

.comparisonLabel h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.comparisonLabel p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

/* Video Section for Landing Page */
.lpVideoSection {
  padding: 8rem 0;
  background-color: var(--bg-color);
}

.lpVideoContainer {
  max-width: 1000px;
}

.videoWrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Location Landing Page Section */
.lpLocationSection {
  padding: 8rem 0;
  background-color: var(--bg-alt);
}

.lpLocationGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.lpMapCol {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 450px;
}

.lpMapCol iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.lpInfoCol {
  padding-left: 1rem;
}

.lpFooter {
  border-top: 1px solid var(--border-color);
}

/* Responsive Rules for Landing Page */
@media (max-width: 991px) {
  .lpHeroGrid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .lpHero {
    padding-top: 120px;
    padding-bottom: 60px;
  }
  
  .antesDepoisGrid {
    grid-template-columns: 1fr;
  }
  
  .lpLocationGrid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .lpMapCol {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .lpHeader .headerActions {
    display: none; /* Hide button/phone link to focus only on Logo in super small viewports */
  }
  
  .lpLeadCard {
    padding: 1.5rem;
  }
  
  .lpSubmitBtn {
    font-size: 0.95rem;
  }
}

/* Light / Dark Mode adaptive support for Lead Capture card */
@media (prefers-color-scheme: dark) {
  .lpLeadCard {
    background: rgba(20, 20, 20, 0.65);
    border-color: rgba(255, 255, 255, 0.08);
  }
}

