/* Universo Clima — Landing Ads */
:root {
  --teal: #1a7a82;
  --teal-deep: #0f5258;
  --teal-soft: #d5eef0;
  --navy: #0b2430;
  --ink: #142028;
  --muted: #5a6b74;
  --copper: #c4783b;
  --copper-hot: #e0893f;
  --fog: #f0f5f6;
  --white: #ffffff;
  --wa: #25d366;
  --wa-dark: #1da851;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.uc-landing {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--fog);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.uc-landing img {
  max-width: 100%;
  height: auto;
  display: block;
}

.uc-landing a {
  color: inherit;
  text-decoration: none;
}

.uc-wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.uc-kicker {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 0.65rem;
}

.uc-h2 {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
  color: var(--navy);
}

.uc-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 38rem;
  margin: 0;
}

/* Buttons */
.uc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.95rem 1.45rem;
  border-radius: 2px;
  border: 0;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s ease, box-shadow 0.25s ease;
}

.uc-btn:hover {
  transform: translateY(-2px);
}

.uc-btn--wa {
  background: var(--wa);
  color: #063517;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
}

.uc-btn--wa:hover {
  background: var(--wa-dark);
  color: #fff;
}

.uc-btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.uc-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.uc-btn svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

/* Top bar */
.uc-top {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  padding: 1rem 0;
}

.uc-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.uc-logo {
  width: min(240px, 58vw);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

.uc-top__place {
  font-family: "Oswald", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-align: right;
}

/* Hero */
.uc-hero {
  position: relative;
  min-height: min(100svh, 820px);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  background: var(--navy);
}

.uc-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.uc-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.06);
  animation: uc-ken 18s var(--ease) forwards;
}

@keyframes uc-ken {
  to {
    transform: scale(1);
  }
}

.uc-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 36, 48, 0.55) 0%, rgba(11, 36, 48, 0.35) 35%, rgba(11, 36, 48, 0.88) 100%),
    linear-gradient(90deg, rgba(15, 82, 88, 0.45), transparent 55%);
  z-index: 1;
}

.uc-hero__content {
  position: relative;
  z-index: 2;
  padding: 7.5rem 0 3.5rem;
}

.uc-brand {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.45);
}

.uc-brand span {
  display: block;
  color: #9fe0e6;
  font-weight: 500;
  font-size: 0.42em;
  letter-spacing: 0.18em;
  margin-bottom: 0.35rem;
}

.uc-hero__title {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: clamp(1.25rem, 2.8vw, 1.85rem);
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  max-width: 22ch;
  margin: 0 0 0.85rem;
  color: #f4f8f9;
}

.uc-hero__text {
  max-width: 34rem;
  margin: 0 0 1.6rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}

.uc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.uc-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  font-family: "Oswald", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.uc-hero__meta strong {
  color: #9fe0e6;
  font-weight: 500;
}

/* Sections */
.uc-section {
  padding: 4.5rem 0;
}

.uc-section--navy {
  background: var(--navy);
  color: var(--white);
}

.uc-section--navy .uc-h2 {
  color: var(--white);
}

.uc-section--navy .uc-lead {
  color: rgba(255, 255, 255, 0.72);
}

.uc-section--teal {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(196, 120, 59, 0.18), transparent 45%),
    linear-gradient(160deg, var(--teal-deep), #0b3d42 55%, var(--navy));
  color: var(--white);
}

.uc-section--teal .uc-h2 {
  color: var(--white);
}

.uc-section--teal .uc-lead {
  color: rgba(255, 255, 255, 0.78);
}

.uc-section__head {
  margin-bottom: 2.25rem;
}

/* Benefits */
.uc-benefits {
  display: grid;
  gap: 1.75rem 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .uc-benefits {
    grid-template-columns: repeat(3, 1fr);
  }
}

.uc-benefit {
  padding-top: 1rem;
  border-top: 2px solid var(--teal);
}

.uc-benefit h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 0.45rem;
  color: var(--navy);
}

.uc-benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* Split */
.uc-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 860px) {
  .uc-split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }

  .uc-split--rev > :first-child {
    order: 2;
  }
}

.uc-photo {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.uc-photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
}

.uc-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(11, 36, 48, 0.45));
  pointer-events: none;
}

.uc-list {
  list-style: none;
  margin: 1.25rem 0 1.75rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.uc-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink);
  font-size: 1rem;
}

.uc-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--copper);
  border-radius: 1px;
}

.uc-section--navy .uc-list li,
.uc-section--teal .uc-list li {
  color: rgba(255, 255, 255, 0.9);
}

/* Modes */
.uc-modes {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 760px) {
  .uc-modes {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.uc-mode h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
  color: #9fe0e6;
}

.uc-mode p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.uc-mode + .uc-mode {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
}

@media (min-width: 760px) {
  .uc-mode + .uc-mode {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 0;
    padding-left: 2.5rem;
  }
}

/* Proof strip */
.uc-proof {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .uc-proof {
    grid-template-columns: repeat(3, 1fr);
  }
}

.uc-proof figure {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.uc-proof img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.uc-proof figure:hover img {
  transform: scale(1.04);
}

.uc-proof figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 1rem;
  font-family: "Oswald", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(transparent, rgba(11, 36, 48, 0.85));
}

/* Cert badges */
.uc-certs {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 700px) {
  .uc-certs {
    grid-template-columns: 1fr 1fr;
  }
}

.uc-cert {
  padding: 1.25rem 0 0;
  border-top: 2px solid rgba(255, 255, 255, 0.25);
}

.uc-cert strong {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  color: #9fe0e6;
}

.uc-cert p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
}

/* Location */
.uc-loc {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 860px) {
  .uc-loc {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2.5rem;
  }
}

.uc-loc__addr {
  font-family: "Oswald", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0.75rem 0 0.35rem;
  color: var(--navy);
}

.uc-loc__ref {
  margin: 0 0 1.5rem;
  color: var(--muted);
}

/* Final CTA */
.uc-cta {
  text-align: center;
  padding: 5rem 0;
}

.uc-cta .uc-h2 {
  max-width: 16ch;
  margin-inline: auto;
}

.uc-cta .uc-lead {
  margin: 0 auto 1.75rem;
}

.uc-cta__note {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Floating WhatsApp */
.uc-float-wa {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: var(--wa);
  color: #063517;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  animation: uc-pulse 2.4s ease-in-out infinite;
}

.uc-float-wa:hover {
  background: var(--wa-dark);
  color: #fff;
  animation: none;
}

.uc-float-wa svg {
  width: 1.7rem;
  height: 1.7rem;
}

@keyframes uc-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

.uc-float-wa__label {
  position: absolute;
  right: calc(100% + 0.65rem);
  white-space: nowrap;
  background: var(--navy);
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 0.7rem;
  border-radius: 2px;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.uc-float-wa:hover .uc-float-wa__label {
  opacity: 1;
  transform: translateX(0);
}

/* Footer mini */
.uc-foot {
  background: #071820;
  color: rgba(255, 255, 255, 0.55);
  padding: 1.25rem 0 5.5rem;
  font-size: 0.85rem;
  text-align: center;
}

/* Reveal */
.uc-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.uc-reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .uc-hero__bg img,
  .uc-float-wa,
  .uc-reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}
