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

:root {
  
  --bg: #050505;
  --bg-2: #0d0d0d;
  --bg-3: #141414;
  --bg-card: #101010;
  --border: #1f1f1f;
  --border-strong: #2a2a2a;

  --red: #b21115;
  --red-hover: #d1151a;
  --red-dark: #710b0b;
  --red-glow: rgba(178, 17, 21, 0.35);

  --white: #FFFFFF;
  --gray-100: #EAEAEA;
  --gray-300: #9A9A9A;
  --gray-500: #5C5C5C;
  --gray-700: #2F2F2F;

  
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Archivo', sans-serif;

  
  --container: 1200px;
  --radius: 2px;
  --radius-lg: 6px;

  
  --accent-gradient: linear-gradient(to right, #710b0b, #970e12, #b21115);
  --accent-dim: #5c0808;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--gray-100);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--red);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--red-hover);
}


body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.08 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  opacity: 0.5;
  mix-blend-mode: overlay;
  z-index: 1;
}


h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--white);
  text-transform: uppercase;
}

.display-xl {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.015em;
}

.display-lg {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 0.98;
}

.display-md {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--red);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--red);
}

p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-100);
}

p.lead {
  font-size: 1.15rem;
  color: var(--gray-100);
  line-height: 1.65;
}

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


.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

section {
  padding: 5rem 0;
  position: relative;
}

@media (min-width: 768px) {
  section { padding: 7rem 0; }
}


.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header--scrolled {
  padding: 16px 0;
  background: rgba(5, 5, 5, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

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

.wordmark {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

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

.nav {
  display: none;
}

@media (min-width: 1024px) {
  .nav {
    display: block;
  }
}

.nav__list {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-300);
  text-decoration: none;
  transition: all 0.4s ease;
  padding: 12px 0;
  position: relative;
}

.nav__link:hover {
  color: #fff;
  letter-spacing: 0.3em;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: all 0.4s ease;
}

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

.header__cta {
  display: none;
}

@media (min-width: 1024px) {
  .header__cta {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: var(--accent-gradient);
    border: none;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(113, 11, 11, 0.4);
    transform: skewX(-12deg);
    position: relative;
    overflow: hidden;
  }

  .header__cta > * {
    transform: skewX(12deg);
    position: relative;
    z-index: 1;
  }

  .header__cta::before {
    content: "";
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #970e12, #b21115, #d1151a);
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
  }

  .header__cta:hover {
    transform: translateY(-2px) skewX(-12deg);
    box-shadow: 0 8px 25px rgba(113, 11, 11, 0.5);
    color: #fff;
  }

  .header__cta:hover::before {
    right: 0;
  }
}


.logo-emblem {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  position: relative;
}

.logo-emblem svg {
  width: 100%;
  height: 100%;
  display: block;
}

.logo-emblem-lg {
  width: 120px;
  height: 120px;
}


.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 0 80px;
  overflow: hidden;
  background: var(--bg);
}

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

.hero__video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.9) 100%);
  z-index: 1;
}

.hero__container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero__container {
    flex-direction: row;
    gap: 80px;
    text-align: left;
  }
}


.hero-content {
  position: relative;
  z-index: 2;
  max-width: 840px;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-content {
    text-align: left;
    margin: 0;
    flex: 1.2; 
  }
}

.hero-logo-wrap {
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-logo-wrap {
    justify-content: flex-start;
  }
}

.hero-logo-text {
  display: flex;
  flex-direction: column;
}

.hero-logo-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--white);
}

.hero-logo-tag {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-top: 4px;
}

.hero h1 {
  margin-bottom: 1.75rem;
}

.highlight {
  color: var(--red);
}

.hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--gray-100);
  max-width: 620px;
  margin: 0 auto 2.75rem;
  line-height: 1.55;
}

@media (min-width: 1024px) {
  .hero-sub {
    margin: 0 0 2.75rem;
  }
}

.hero-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .hero-cta-row {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero-cta-row {
    justify-content: flex-start;
  }
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-300);
}

.hero-meta-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--red);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}


.hero__cards {
  display: flex;
  gap: 12px;
  height: 480px;
  width: 100%;
  max-width: 500px;
  z-index: 2;
  margin-top: 40px;
}

@media (min-width: 1024px) {
  .hero__cards {
    margin-top: 0;
    flex: 0.8;
  }
}

@media (max-width: 1023px) {
  .hero__cards {
    height: 320px;
    max-width: 100%;
  }
}

.hero-card {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  background: #0f0e0a;
}

.hero-card:hover {
  flex: 2.5;
  border-color: var(--red);
  box-shadow: 0 0 40px rgba(225, 6, 0, 0.2);
}

.hero-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  transition: opacity 0.4s ease, filter 0.4s ease;
  filter: grayscale(1);
}

.hero-card:hover .hero-card__video {
  opacity: 1;
  filter: grayscale(0);
}

.hero-card__label {
  position: absolute;
  bottom: 24px;
  left: 20px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  transition: all 0.4s ease;
  white-space: nowrap;
}

.hero-card:hover .hero-card__label {
  writing-mode: horizontal-tb;
  transform: rotate(0);
  font-size: 14px;
  bottom: 30px;
}


.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2.2rem;
  background: linear-gradient(to right, #710b0b, #970e12, #b21115); 
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 0;
  border: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.6);
  transform: skewX(-12deg);
  margin: 0 10px;
}

.btn-whatsapp > * {
  transform: skewX(12deg);
  position: relative;
  z-index: 1;
}

.btn-whatsapp::before {
  content: "";
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #970e12, #b21115, #d1151a); 
  transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.btn-whatsapp:hover {
  transform: translateY(-2px) skewX(-12deg);
  box-shadow: 0 12px 32px -4px rgba(225, 6, 0, 0.4);
}

.btn-whatsapp:hover::before {
  right: 0;
}

.btn-whatsapp svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.btn-whatsapp-lg {
  padding: 1.3rem 2.8rem;
  font-size: 1.15rem;
}

.btn-microcopy {
  display: block;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--gray-300);
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .btn-whatsapp {
    padding: 0.9rem 1.4rem;
    font-size: 0.85rem;
    gap: 0.5rem;
    margin: 0;
    width: auto;
    max-width: 100%;
    justify-content: center;
  }
  
  .btn-whatsapp span {
    white-space: nowrap;
  }

  .btn-microcopy {
    font-size: 0.7rem;
    text-align: center;
    margin-top: 0.75rem;
    color: var(--gray-100);
    opacity: 0.8;
  }
}


.slogan-band {
  padding: 4rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.slogan-band::before,
.slogan-band::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 8px;
  background-image: repeating-linear-gradient(
    45deg,
    var(--white) 0 10px,
    var(--bg-2) 10px 20px
  );
  opacity: 0.08;
}

.slogan-band::before { top: 0; }
.slogan-band::after { bottom: 0; }

.slogan-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.slogan-content h2 {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--white);
}

.slogan-content h2 .red-word {
  color: var(--red);
}

.slogan-content .sub {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-500);
}


.services-head {
  margin-bottom: 3.5rem;
  max-width: 720px;
}

.services-head p {
  font-size: 1.1rem;
  color: var(--gray-100);
  margin-top: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  background: var(--bg-card);
  padding: 2.25rem 2rem;
  transition: background 0.3s ease;
  position: relative;
}

.service-card:hover {
  background: var(--bg-3);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.4s ease;
}

.service-card:hover::before {
  width: 100%;
}

.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.5rem;
  color: var(--red);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.85rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--gray-300);
  line-height: 1.6;
}


.pillars {
  position: relative;
  background-image: url('../assets/img/sec-pq-suprema-01.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.pillars::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.85), rgba(5, 5, 5, 0.95));
  z-index: 1;
}

.pillars-head {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.pillars-head .eyebrow {
  justify-content: center;
}

.pillars-head .eyebrow::before {
  margin-right: 0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
}

.pillar {
  padding: 2rem 0;
  position: relative;
}

.pillar-number {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--red);
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
  display: block;
  opacity: 0.95;
}

.pillar h3 {
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.pillar p {
  color: var(--gray-300);
  font-size: 0.98rem;
  line-height: 1.7;
}


#para-quem {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background-image: url('../assets/img/para-quem-background-new-suprema.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

#para-quem::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.85), rgba(5, 5, 5, 0.95));
  z-index: 1;
}

#para-quem .container {
  position: relative;
  z-index: 2;
}

.for-who-head {
  margin-bottom: 4rem;
  max-width: 800px;
}

.for-who-head h2 {
  margin-bottom: 1.5rem;
}

.for-who-head p {
  color: var(--gray-300);
  font-size: 1.05rem;
  line-height: 1.6;
}

.for-who-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center; 
}

@media (min-width: 900px) {
  .for-who-grid {
    grid-template-columns: 0.8fr 1.2fr; 
    gap: 5rem;
  }
}

.for-who-list {
  list-style: none;
  display: grid;
  gap: 1.25rem;
}

.for-who-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.for-who-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: var(--red);
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.for-who-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(225, 6, 0, 0.3);
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.for-who-item:hover::before {
  transform: scaleY(1);
}

.for-who-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-glow);
  color: var(--red);
  border-radius: 50%;
  padding: 4px;
  margin-top: 2px;
  transition: all 0.3s ease;
}

.for-who-item:hover .for-who-icon {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 15px var(--red);
  transform: scale(1.1);
}

.for-who-icon svg {
  width: 100%;
  height: 100%;
}

.for-who-item span {
  font-size: 1.05rem;
  color: var(--gray-100);
  line-height: 1.5;
  transition: color 0.3s ease;
}

.for-who-item:hover span {
  color: #fff;
}

.for-who-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
}


.how-it-works {
  background: var(--bg-2);
}

.how-head {
  margin-bottom: 4rem;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.how-head .eyebrow {
  justify-content: center;
}

.how-head .eyebrow::before {
  margin-right: 0;
}

.how-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  counter-reset: step;
  position: relative;
}

@media (min-width: 768px) {
  .how-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.how-step {
  background: var(--bg-card);
  padding: 2.5rem 2rem 2rem;
  border: 1px solid var(--border);
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.how-step:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}

.how-step-num {
  position: absolute;
  top: -18px;
  left: 2rem;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: var(--radius);
  box-shadow: 0 6px 20px -4px var(--red-glow);
}

.how-step h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
}

.how-step p {
  color: var(--gray-300);
  font-size: 0.95rem;
}


.cta-final {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 60%);
  opacity: 0.45;
  pointer-events: none;
}

.cta-final-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.cta-final h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.25rem;
  line-height: 1.05;
}

.cta-final p {
  color: var(--gray-100);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.cta-final-micro {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-500);
}


.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
}

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

.footer-brand-text .name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

.footer-brand-text .sub {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-top: 3px;
}

.footer-bio {
  color: var(--gray-300);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 340px;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.footer-col p,
.footer-col a {
  color: var(--gray-100);
  font-size: 0.92rem;
  text-decoration: none;
  line-height: 1.7;
  display: block;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--red);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray-500);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}


.sticky-wa {
  position: fixed;
  bottom: 1.25rem;
  right: 0; 
  z-index: 90;
  width: 80px; 
  height: 56px;
  background: linear-gradient(to right, #710b0b, #970e12, #b21115);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start; 
  padding-left: 18px; 
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 10px 30px -6px rgba(0, 0, 0, 0.5);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform: skewX(-12deg) translateX(15px); 
  overflow: hidden;
}

.sticky-wa::before {
  content: "";
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #970e12, #b21115, #d1151a);
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.sticky-wa:hover {
  transform: scale(1.05) translateY(-4px) skewX(-12deg) translateX(5px); 
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.6);
}

.sticky-wa:hover::before {
  right: 0;
}

.sticky-wa svg {
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 1;
  transform: skewX(12deg);
}

@keyframes pulse-sticky {
  0%, 100% { box-shadow: 0 10px 30px -6px rgba(100, 0, 0, 0.5), 0 4px 12px rgba(0,0,0,0.5), 0 0 0 0 var(--red-glow); }
  50% { box-shadow: 0 10px 30px -6px rgba(100, 0, 0, 0.5), 0 4px 12px rgba(0,0,0,0.5), 0 0 0 14px transparent; }
}

@media (min-width: 768px) {
  .sticky-wa {
    width: 95px;
    height: 64px;
    bottom: 2rem;
    right: 0;
    padding-left: 22px;
  }
  .sticky-wa svg { width: 32px; height: 32px; }
}


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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }


.red-line {
  width: 60px;
  height: 2px;
  background: var(--red);
  margin: 0 0 1.5rem;
  display: block;
}

.red-line.centered {
  margin: 0 auto 1.5rem;
}


.img-slot {
  position: relative;
  background: linear-gradient(135deg, #0d0d0d 0%, #151515 100%);
  border: 1px dashed var(--red);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease;
}

.img-slot::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><polygon points='50,1 95,25 95,75 50,99 5,75 5,25' fill='none' stroke='%23E10600' stroke-width='0.5' opacity='0.15'/></svg>");
  background-size: 60px 60px;
  opacity: 0.5;
  pointer-events: none;
}

.img-slot-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1.5rem;
  max-width: 85%;
}

.img-slot-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 1rem;
  color: var(--red);
  opacity: 0.9;
}

.img-slot-icon svg {
  width: 100%;
  height: 100%;
}

.img-slot-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.img-slot-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gray-100);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.img-slot-dim {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-top: 0.5rem;
}


.aspect-16-9 { aspect-ratio: 16 / 9; }
.aspect-4-5 { aspect-ratio: 4 / 5; }
.aspect-1-1 { aspect-ratio: 1 / 1; }
.aspect-3-4 { aspect-ratio: 3 / 4; }
.aspect-21-9 { aspect-ratio: 21 / 9; }


.ba-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius);
  z-index: 3;
}

.ba-tag.after {
  background: var(--white);
  color: var(--bg);
}



#estudio {
  padding: 120px 0;
  background: var(--bg-1);
}

.studio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 1.5rem;
  margin-bottom: 60px;
}

.studio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.studio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.studio-item:hover img {
  transform: scale(1.1);
}

.studio-item video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 2;
}

.studio-item:hover video {
  opacity: 1;
}

.studio-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.studio-item.wide {
  grid-column: span 2;
}

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

.studio-feature {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: transparent;
  border: none;
  padding: 0;
  transition: all 0.3s ease;
}

.studio-feature-icon {
  width: 32px;
  height: 32px;
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}

.studio-feature:hover .studio-feature-icon {
  transform: translateY(-3px) scale(1.1);
  filter: drop-shadow(0 0 8px rgba(225, 6, 0, 0.5));
}

.studio-feature h4 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.studio-feature h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--red);
  transition: width 0.3s ease;
}

.studio-feature:hover h4::after {
  width: 60px;
}

.studio-feature p {
  font-size: 0.95rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1023px) {
  .studio-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .studio-item.large {
    grid-column: span 2;
    grid-row: span 1;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .studio-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .studio-item, .studio-item.large, .studio-item.wide {
    grid-column: span 1;
    height: 300px;
  }
  .studio-features {
    grid-template-columns: 1fr;
  }
}

.gallery-head {
  margin-bottom: 3.5rem;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-head .eyebrow {
  justify-content: center;
}

.gallery-head .eyebrow::before {
  margin-right: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  position: relative;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(225, 6, 0, 0.1) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: var(--red);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 20px rgba(225, 6, 0, 0.15);
}

.gallery-item:hover::before {
  opacity: 1;
}


.gallery-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.8s ease;
  z-index: 10;
  pointer-events: none;
}

.gallery-item:hover::after {
  left: 150%;
}

.gallery-caption {
  padding: 1.25rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-100);
  background: var(--bg-card);
  text-align: center;
  position: relative;
  z-index: 5;
}

.gallery-caption::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--red);
}

.gallery-item:hover .gallery-caption::after {
  width: 100%;
}

.gallery-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-2);
}

.gallery-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-video-wrapper.is-rotated video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%) rotate(-90deg);
}

.gallery-video-overlay {
  position: absolute;
  inset: 0;
  background: var(--red);
  opacity: 0.12;
  pointer-events: none;
  z-index: 2;
}


.image-compare-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  --pos: 50%;
}

.image-compare-after {
  width: 100%;
  display: block;
}

.image-compare-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
  pointer-events: none;
}

.image-compare-after .img-slot,
.image-compare-before .img-slot {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0;
}

.image-compare-wrapper .ba-tag {
  z-index: 5;
}

.image-compare-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
  margin: 0;
  appearance: none;
}

.image-compare-handle {
  position: absolute;
  top: 0;
  left: var(--pos);
  width: 2px;
  height: 100%;
  background: var(--red);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 6;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.image-compare-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background-color: var(--red);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M8 17l-5-5 5-5v10zm8-10l5 5-5 5V7z'/%3E%3C/svg%3E");
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.image-compare-wrapper:hover .image-compare-handle::after {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 15px rgba(225, 6, 0, 0.4);
}


.for-who-img-slot {
  align-self: stretch;
}


@media (min-width: 1024px) {
  .hero-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  .hero-content {
    max-width: none;
  }

  .hero-img-wrap {
    position: relative;
  }
}

.hero-img-wrap {
  display: none;
}

@media (min-width: 1024px) {
  .hero-img-wrap {
    display: block;
  }
}


.footer-map {
  margin-top: 3rem;
  border-top: 1px solid var(--border);
  padding-top: 3rem;
}

.footer-map-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-map-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.footer-map-addr {
  font-size: 0.9rem;
  color: var(--gray-300);
}

.footer-map-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-route {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--bg-card);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  transition: all 0.3s ease;
}

.btn-route svg {
  width: 18px;
  height: 18px;
}

.btn-route:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(225, 6, 0, 0.3);
}

.map-container {
  width: 100%;
  display: block; 
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  
  filter: grayscale(100%) invert(100%) contrast(85%) brightness(85%);
  transition: filter 0.3s ease;
}

.map-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red);
  mix-blend-mode: overlay;
  opacity: 0.15;
  pointer-events: none;
}

.custom-map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 44px;
  height: 44px;
  color: var(--red);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}

.map-container:hover .custom-map-pin {
  transform: translate(-50%, -115%);
}

.custom-map-pin svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 10px 10px rgba(0,0,0,0.5));
}

.custom-map-pin-pulse {
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  transform: translate(-50%, 50%);
  z-index: -1;
}

.custom-map-pin-pulse::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--red);
  animation: pulse-pin 2s ease-out infinite;
}

@keyframes pulse-pin {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(3.5); opacity: 0; }
}


.shine-wrapper {
  position: relative;
  display: inline-block;
  font-weight: 900;
  color: #fff;
  
  background: linear-gradient(
    110deg, 
    #fff 40%, 
    #fff 44%, 
    #ffffff 50%, 
    #fff 56%, 
    #fff 60%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shine-sweep 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  
  filter: drop-shadow(0 0 1px rgba(255,255,255,0.8));
}

@keyframes shine-sweep {
  0% {
    background-position: 200% 0;
    filter: drop-shadow(0 0 0px rgba(255,255,255,0));
  }
  50% {
    background-position: 0% 0;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.6));
  }
  100% {
    background-position: -200% 0;
    filter: drop-shadow(0 0 0px rgba(255,255,255,0));
  }
}

#resultados {
  position: relative;
  overflow: hidden;
}

#resultados::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(225, 6, 0, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

#servicos {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.section-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.section-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.85) 50%, rgba(10, 10, 10, 0.95) 100%);
  z-index: 1;
}

#servicos .container {
  position: relative;
  z-index: 2;
}


.mobile-menu-btn, .mobile-nav-overlay {
  display: none;
}

@media (max-width: 1023px) {
  
  .nav, .header__cta {
    display: none !important;
  }

  
  .mobile-menu-btn {
    display: block;
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
  }

  .mobile-menu-btn svg {
    width: 28px;
    height: 28px;
  }

  
  .mobile-nav-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-nav-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
  }

  .mobile-menu-close svg {
    width: 32px;
    height: 32px;
  }

  .mobile-nav-inner {
    text-align: center;
    width: 100%;
    padding: 2rem;
  }

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

  .mobile-nav__link {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .mobile-nav__link:hover {
    color: var(--red);
  }

  .mobile-nav__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: var(--accent-gradient);
    border-radius: 0;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.1em;
    transform: skewX(-12deg);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
  }

  .mobile-nav__cta > * {
    transform: skewX(12deg);
    position: relative;
    z-index: 1;
  }

  .mobile-nav__cta::before {
    content: "";
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #970e12, #b21115, #d1151a);
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
  }

  .mobile-nav__cta:active::before {
    right: 0;
  }
}


@media (max-width: 768px) {
  
  .hero-content,
  .section-head,
  .pillars-head,
  .gallery-head,
  .how-head,
  .slogan-band {
    text-align: left !important;
    align-items: flex-start !important;
  }

  
  .cta-final-content {
    text-align: center !important;
    align-items: center !important;
  }

  .hero-cta-meta {
    margin-top: 1.2rem !important; 
  }

  .hero-cta-meta .btn-microcopy {
    display: none !important; 
  }
  
  .eyebrow {
    justify-content: flex-start !important;
  }

  .cta-final-content .eyebrow {
    justify-content: center !important;
  }

  h1, h2, h3, p, .footer-col-title, .footer-map-title {
    text-align: left !important;
  }

  .cta-final-content h2, 
  .cta-final-content p,
  .btn-microcopy,
  .cta-final-micro {
    text-align: center !important;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .display-xl {
    font-size: 2.5rem !important;
    line-height: 1 !important;
  }

  .slogan-content h2 {
    font-size: 3rem !important;
    line-height: 1 !important;
  }

  .display-lg {
    font-size: 2.7rem !important;
    line-height: 1 !important;
  }

  
  .btn-primary, .btn-secondary, .btn-whatsapp, .header__cta, .mobile-nav__cta, .btn-route {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .cta-final-micro {
    font-size: 0.75rem !important;
    letter-spacing: 0.1em !important;
    white-space: nowrap;
    opacity: 1 !important;
    color: #ffffff !important; 
    margin-top: 1.5rem !important;
    display: block;
  }

  .btn-microcopy {
    font-size: 0.7rem;
    margin-top: 0.75rem;
    color: var(--gray-100);
    opacity: 0.8;
    display: block;
  }
}


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

.footer-signature {
    margin-top: 0;
    flex: 1;
    text-align: right;
    order: 3;
}

.footer-developed {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    font-size: 13px;
    font-weight: 400;
    color: #f0f0f0;
}

.footer-developed span {
    color: #f0f0f0;
}

.asthros-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none !important;
}

.asthros-logo {
    height: 15px !important;
    width: auto !important;
    display: block;
    filter: brightness(0) invert(1) opacity(0.8);
    transition: filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s ease;
}

.asthros-logo-link:hover .asthros-logo {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(180, 255, 0, 0.6));
}

@media (max-width: 768px) {
    .footer-developed {
        justify-content: center !important;
    }
}
