/* =============================================
   BEERAL AGENCIA — Landing Page Styles
   Brand Color: #1340F4 (vivid blue)
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:        #1340F4;
  --blue-dark:   #0c2db3;
  --blue-light:  #3a5cff;
  --white:       #ffffff;
  --off-white:   #f5f5f7;
  --gray-100:    #e8e8ec;
  --gray-300:    #c0c0cc;
  --gray-700:    #3a3a4a;
  --black:       #0a0a0f;

  --font-sans:   'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-serif:  'Helvetica Neue', Helvetica, Arial, sans-serif;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   28px;

  --shadow-card: 0 4px 32px rgba(19,64,244,0.08), 0 1px 4px rgba(0,0,0,0.06);
  --shadow-lg:   0 16px 64px rgba(0,0,0,0.18);

  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =============================================
   SCROLLBAR
   ============================================= */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s var(--ease-smooth), backdrop-filter 0.4s;
}
.navbar.scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
  gap: 0px;
}
.nav-logo .logo-beeral {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--white);
}
.nav-logo .logo-agencia {
  font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--white);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width 0.3s var(--ease-smooth);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links .nav-cta {
  background: var(--blue);
  color: var(--white);
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.2s;
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease-smooth);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(10,10,15,0.97);
  padding: 1.5rem 2.5rem 2rem;
  gap: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--white); }

/* =============================================
   HERO
   ============================================= */
.section-hero {
  min-height: 100vh;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Noise texture overlay */
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.15;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 5vw;
  max-width: 1200px;
  width: 100%;
}

.hero-eyebrow {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.25rem;
  animation: fadeSlideUp 0.8s var(--ease-smooth) both;
}

.hero-title {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(5rem, 16vw, 14rem);
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: var(--white);
  animation: fadeSlideUp 0.9s 0.1s var(--ease-smooth) both;
}
.hero-brand {
  display: block;
  position: relative;
}

.scroll-indicator {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeSlideUp 1s 0.3s var(--ease-smooth) both;
}
.scroll-line {
  width: 1px; height: 50px;
  background: rgba(255,255,255,0.5);
  animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

.hero-logo-watermark {
  position: absolute;
  right: -5vw;
  bottom: -4vh;
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(8rem, 22vw, 22rem);
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.06);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 1;
}

/* =============================================
   ABOUT / GROWTH BRAND
   ============================================= */
.section-about {
  background: var(--black);
  padding: 8rem 0 0;
  overflow: hidden;
}
.about-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5vw 6rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}
.about-label {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  letter-spacing: 0.18em;
  color: var(--blue);
  padding-top: 0.5rem;
}
.about-heading {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(1.5rem, 3.5vw, 3.2rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 2.5rem;
}
.about-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.pill {
  padding: 0.5rem 1.25rem;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.pill:hover {
  border-color: var(--blue);
  color: var(--white);
  background: rgba(19,64,244,0.12);
}

/* Marquee */
.about-marquee {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1.1rem 0;
  background: rgba(19,64,244,0.06);
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  padding-right: 0;
}

/* =============================================
   SERVICES
   ============================================= */
.section-services {
  background: var(--black);
  padding: 7rem 0 8rem;
}
.services-header {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5vw 4rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.services-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--blue);
  margin-bottom: 0.75rem;
}
.services-heading {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--white);
}

.services-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: background 0.35s, border-color 0.35s, transform 0.35s var(--ease-smooth);
  cursor: default;
}
.service-card:hover {
  background: rgba(19,64,244,0.08);
  border-color: rgba(19,64,244,0.4);
  transform: translateY(-6px);
}
.service-card-top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.service-icon {
  width: 44px; height: 44px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}
.service-icon svg { width: 100%; height: 100%; }
.service-name {
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.25;
  color: var(--white);
}
.service-list li {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.service-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 0.5rem;
}
.service-list li:last-child { border-bottom: none; }

/* =============================================
   PORTFOLIO
   ============================================= */
.section-portfolio {
  background: #0e0e14;
  padding: 8rem 0;
  overflow: hidden;
}
.portfolio-header {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5vw 3.5rem;
}
.portfolio-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--blue);
  margin-bottom: 0.75rem;
}
.portfolio-heading {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1rem;
}
.portfolio-subheading {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  max-width: 400px;
}

/* Carousel */
.carousel-wrapper {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5vw;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.55s var(--ease-smooth);
  will-change: transform;
}
.carousel-slide {
  flex: 0 0 calc(33.333% - 0.85rem);
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
}
.carousel-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}
.carousel-slide:hover img { transform: scale(1.04); }

.carousel-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  background: var(--blue);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 10;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(19,64,244,0.4);
}
.carousel-btn:hover {
  background: var(--blue-light);
  transform: translateY(-50%) scale(1.08);
}
.carousel-btn svg { width: 22px; height: 22px; }
.carousel-btn.prev { left: calc(5vw - 26px); }
.carousel-btn.next { right: calc(5vw - 26px); }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2.5rem;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, width 0.3s;
  padding: 0;
}
.carousel-dot.active {
  background: var(--blue);
  width: 24px;
  border-radius: 4px;
}

/* =============================================
   CONTACT
   ============================================= */
.section-contact {
  background: var(--blue);
  position: relative;
  overflow: hidden;
  padding: 8rem 0 7rem;
}
.contact-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.1;
  pointer-events: none;
}
.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 5vw;
}
.contact-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.contact-heading {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1rem;
}
.contact-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  margin-bottom: 3rem;
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--white);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.15);
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--white);
  color: var(--blue);
  border: none;
  border-radius: 50px;
  padding: 1.1rem 2.5rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  align-self: flex-start;
  margin-top: 0.5rem;
}
.btn-submit svg { width: 20px; height: 20px; }
.btn-submit:hover { transform: translateY(-2px) scale(1.02); }
.btn-submit:active { transform: scale(0.98); }

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3rem;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.contact-link svg { width: 20px; height: 20px; opacity: 0.7; }
.contact-link:hover { color: var(--white); }
.contact-link:hover svg { opacity: 1; }

.contact-logo-big {
  position: absolute;
  bottom: -2rem;
  right: -3rem;
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 0;
  pointer-events: none;
  user-select: none;
  opacity: 0.06;
  z-index: 1;
}
.contact-logo-big .logo-beeral {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: clamp(5rem, 12vw, 12rem);
  letter-spacing: 0.08em;
  color: var(--white);
}
.contact-logo-big .logo-agencia {
  font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
  font-weight: 400;
  font-size: clamp(4.2rem, 10vw, 10rem);
  letter-spacing: 0.05em;
  color: var(--white);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.75rem 0;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-brand {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s var(--ease-smooth), transform 0.75s var(--ease-smooth);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .carousel-slide { flex: 0 0 calc(50% - 0.625rem); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services-grid { grid-template-columns: 1fr; }

  .carousel-slide { flex: 0 0 calc(100% - 0rem); }
  .carousel-btn.prev { left: 0.5rem; }
  .carousel-btn.next { right: 0.5rem; }

  .form-row { grid-template-columns: 1fr; }

  .services-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

@media (max-width: 480px) {
  .nav-inner { padding: 1.25rem 1.25rem; }
  .about-inner, .services-header, .services-grid,
  .portfolio-header, .carousel-wrapper, .contact-inner,
  .footer-inner { padding-left: 1.25rem; padding-right: 1.25rem; }
}

/* =============================================
   CONTACT BUTTONS (MODIFIED)
   ============================================= */
.contact-buttons-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
  width: 100%;
  position: relative;
  z-index: 5;
}
.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 1.1rem 2.2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.contact-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.btn-whatsapp {
  background-color: #25D366;
  color: #ffffff;
}
.btn-whatsapp:hover {
  background-color: #20ba56;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(37,211,102,0.35);
}
.btn-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
}
.btn-instagram:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(220,39,67,0.35);
}

@media (min-width: 576px) {
  .contact-buttons-wrapper {
    flex-direction: row;
  }
  .contact-btn {
    flex: 1;
  }
}

/* Logo replica from image */
.nav-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 0.82;
  text-transform: uppercase;
  letter-spacing: normal;
}
.nav-logo .logo-beeral {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: -0.015em;
  color: var(--white);
  display: block;
}
.nav-logo .logo-agencia {
  font-family: 'Bodoni Moda', 'Didot', 'Times New Roman', serif;
  font-weight: 400;
  font-size: 1.54rem;
  letter-spacing: -0.035em;
  color: var(--white);
  display: block;
  margin-top: -0.1rem;
}

.contact-logo-big {
  position: absolute;
  bottom: -2rem;
  right: -3rem;
  display: flex;
  flex-direction: column;
  line-height: 0.82;
  pointer-events: none;
  user-select: none;
  opacity: 0.06;
  z-index: 1;
  text-transform: uppercase;
}
.contact-logo-big .logo-beeral {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(5rem, 12vw, 12rem);
  letter-spacing: -0.015em;
  color: var(--white);
}
.contact-logo-big .logo-agencia {
  font-family: 'Bodoni Moda', 'Didot', 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(4.9rem, 11.9vw, 11.9rem);
  letter-spacing: -0.035em;
  color: var(--white);
  margin-top: -0.5rem;
}

/* Logo Image Styling */
.nav-logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 82px;
  width: auto;
  border-radius: 4px;
  display: block;
  transition: transform 0.2s ease;
}
.logo-img:hover {
  transform: scale(1.04);
}
