:root {
  --navy-deep: #041426;
  --navy: #08243f;
  --navy-light: #123b5c;

  --blue: #3f769b;
  --blue-light: #91b6ca;

  --gold: #cba13e;
  --gold-light: #edcf78;

  --white: #ffffff;
  --off-white: #f5f6f7;

  --text-dark: #112338;
  --text-gray: #667484;

  --border-light:
    rgba(255, 255, 255, 0.16);

  --shadow:
    0 28px 80px rgba(3, 17, 31, 0.22);

  --container:
    min(1240px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  color: var(--white);
  background: var(--navy-deep);

  font-family:
    Inter,
    Arial,
    Helvetica,
    sans-serif;

  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.container {
  width: var(--container);

  margin-inline: auto;
}

/* =========================
   HEADER
========================= */

.header {
  position: absolute;

  top: 0;
  left: 0;

  z-index: 30;

  width: 100%;

  padding-top: 27px;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;

  gap: 14px;
}

.brand-symbol {
  min-width: 58px;

  display: flex;
  align-items: center;

  font-size: 34px;
  font-weight: 900;
  line-height: 1;

  letter-spacing: -9px;
}

.brand-p {
  position: relative;

  z-index: 1;

  color: var(--gold);
}

.brand-r {
  position: relative;

  z-index: 2;

  color: var(--blue);

  transform: translateX(-5px);
}

.brand-name {
  display: flex;
  flex-direction: column;

  line-height: 0.95;
}

.brand-name strong {
  font-size: 20px;
  font-weight: 900;

  letter-spacing: 0.16em;
}

.brand-name > span {
  margin-top: 7px;

  color: var(--gold-light);

  font-size: 11px;
  font-weight: 900;

  letter-spacing: 0.24em;
}

.brand-name small {
  margin-top: 6px;

  font-size: 7px;
  font-weight: 800;

  letter-spacing: 0.24em;
}

.header-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 43px;

  padding-inline: 20px;

  color: var(--white);

  border:
    1px solid rgba(255, 255, 255, 0.24);

  border-radius: 999px;

  background:
    rgba(255, 255, 255, 0.07);

  font-size: 12px;
  font-weight: 800;

  backdrop-filter: blur(14px);

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.header-button:hover {
  background:
    rgba(255, 255, 255, 0.14);

  transform: translateY(-2px);
}

/* =========================
   HERO
========================= */

.hero {
  position: relative;

  min-height: 100vh;

  display: flex;
  align-items: center;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(55, 116, 157, 0.18),
      transparent 28%
    ),
    radial-gradient(
      circle at 68% 80%,
      rgba(203, 161, 62, 0.09),
      transparent 26%
    ),
    linear-gradient(
      135deg,
      #031323 0%,
      #061b31 48%,
      #0b2f4c 100%
    );
}

.hero::before {
  content: "";

  position: absolute;
  inset: 0;

  opacity: 0.16;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    );

  background-size:
    62px 62px;

  pointer-events: none;
}

.hero::after {
  content: "PRIME";

  position: absolute;

  left: -35px;
  bottom: -85px;

  color: transparent;

  font-size:
    clamp(180px, 22vw, 400px);

  font-weight: 900;
  line-height: 1;

  letter-spacing: -0.09em;

  -webkit-text-stroke:
    2px rgba(255, 255, 255, 0.025);

  pointer-events: none;
}

.hero-light {
  position: absolute;

  border-radius: 50%;

  filter: blur(110px);

  pointer-events: none;
}

.hero-light-one {
  top: -160px;
  right: 25%;

  width: 460px;
  height: 460px;

  background:
    rgba(74, 133, 169, 0.18);
}

.hero-light-two {
  right: -240px;
  bottom: -200px;

  width: 540px;
  height: 540px;

  background:
    rgba(203, 161, 62, 0.12);
}

.hero-grid {
  position: relative;

  z-index: 4;

  display: grid;

  grid-template-columns:
    0.82fr 1.18fr;

  align-items: center;

  gap: clamp(45px, 6vw, 100px);

  padding:
    130px 0 75px;
}

/* Texto principal */

.hero-copy {
  max-width: 570px;
}

.official-label {
  display: inline-flex;
  align-items: center;

  gap: 9px;

  margin-bottom: 28px;

  padding:
    8px 13px;

  color:
    rgba(255, 255, 255, 0.73);

  border:
    1px solid rgba(255, 255, 255, 0.12);

  border-radius: 999px;

  background:
    rgba(255, 255, 255, 0.045);

  font-size: 9px;
  font-weight: 900;

  text-transform: uppercase;

  letter-spacing: 0.18em;
}

.official-dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: var(--gold-light);

  box-shadow:
    0 0 14px rgba(237, 207, 120, 0.65);
}

.location-label {
  margin:
    0 0 18px;

  color: var(--gold-light);

  font-size: 11px;
  font-weight: 900;

  text-transform: uppercase;

  letter-spacing: 0.24em;
}

h1 {
  margin: 0;

  font-size:
    clamp(56px, 6.2vw, 95px);

  font-weight: 900;

  line-height: 0.92;

  letter-spacing: -0.058em;

  text-shadow:
    0 20px 50px rgba(0, 0, 0, 0.26);
}

h1 span {
  display: block;

  color: transparent;

  background:
    linear-gradient(
      95deg,
      #ffffff 3%,
      #d7e8f1 48%,
      #78a3bc 100%
    );

  background-clip: text;
  -webkit-background-clip: text;
}

.hero-description {
  margin:
    26px 0 0;

  color:
    rgba(255, 255, 255, 0.66);

  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;

  margin-top: 35px;
}

.button {
  min-height: 51px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding-inline: 24px;

  border:
    1px solid transparent;

  border-radius: 999px;

  font-size: 13px;
  font-weight: 900;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--navy-deep);

  background:
    linear-gradient(
      135deg,
      var(--gold-light),
      var(--gold)
    );

  box-shadow:
    0 15px 34px rgba(203, 161, 62, 0.25);
}

.button-outline {
  color: var(--white);

  border-color:
    rgba(255, 255, 255, 0.27);

  background:
    rgba(255, 255, 255, 0.055);

  backdrop-filter: blur(14px);
}

.quick-contact {
  display: flex;
  align-items: center;

  gap: 17px;

  margin-top: 40px;

  padding-top: 23px;

  border-top:
    1px solid rgba(255, 255, 255, 0.1);
}

.quick-contact span {
  color:
    rgba(255, 255, 255, 0.4);

  font-size: 9px;
  font-weight: 900;

  text-transform: uppercase;

  letter-spacing: 0.17em;
}

.quick-contact a {
  color: var(--white);

  font-size: 14px;
  font-weight: 800;
}

/* =========================
   COMPOSICIÓN DE IMÁGENES
========================= */

.visual-composition {
  position: relative;

  min-height: 670px;
}

.visual-decoration {
  position: absolute;

  border:
    1px solid rgba(255, 255, 255, 0.09);

  border-radius: 50%;

  pointer-events: none;
}

.decoration-one {
  top: 25px;
  right: 5px;

  width: 330px;
  height: 330px;
}

.decoration-two {
  left: 30px;
  bottom: 10px;

  width: 220px;
  height: 220px;

  box-shadow:
    0 0 0 45px rgba(255, 255, 255, 0.018);
}

.image-card {
  position: absolute;

  margin: 0;

  overflow: hidden;

  border:
    1px solid rgba(255, 255, 255, 0.17);

  border-radius: 27px;

  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.35);

  background: var(--navy);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease;
}

.image-card::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      0deg,
      rgba(3, 18, 31, 0.72),
      transparent 45%
    );

  pointer-events: none;
}

.image-card:hover {
  z-index: 10;

  transform:
    translateY(-7px)
    scale(1.012);

  border-color:
    rgba(237, 207, 120, 0.42);
}

.image-main {
  top: 40px;
  left: 0;

  width: 72%;
  height: 590px;
}

.image-main img {
  object-position: 55% center;
}

.image-secondary {
  top: 0;
  right: 0;

  width: 37%;
  height: 270px;

  z-index: 3;
}

.image-secondary img {
  object-position: center;
}

.image-tertiary {
  right: 3%;
  bottom: 25px;

  width: 43%;
  height: 300px;

  z-index: 4;
}

.image-tertiary img {
  object-position: 55% center;
}

.image-main figcaption {
  position: absolute;

  left: 27px;
  right: 27px;
  bottom: 25px;

  z-index: 4;

  display: flex;
  flex-direction: column;
}

.image-main figcaption span {
  color: var(--gold-light);

  font-size: 9px;
  font-weight: 900;

  letter-spacing: 0.2em;
}

.image-main figcaption strong {
  margin-top: 4px;

  font-size: 17px;

  letter-spacing: 0.08em;
}

.office-card {
  position: absolute;

  right: 30%;
  bottom: 6px;

  z-index: 8;

  min-width: 160px;

  padding:
    17px 20px;

  border:
    1px solid rgba(255, 255, 255, 0.17);

  border-radius: 17px;

  background:
    rgba(4, 20, 38, 0.85);

  box-shadow:
    0 20px 55px rgba(0, 0, 0, 0.3);

  backdrop-filter: blur(17px);
}

.office-card span,
.office-card strong,
.office-card small {
  display: block;
}

.office-card span {
  color: var(--gold-light);

  font-size: 8px;
  font-weight: 900;

  text-transform: uppercase;

  letter-spacing: 0.18em;
}

.office-card strong {
  margin-top: 5px;

  font-size: 18px;
}

.office-card small {
  margin-top: 3px;

  color:
    rgba(255, 255, 255, 0.55);

  font-size: 11px;
}

.scroll-indicator {
  position: absolute;

  left: 50%;
  bottom: 25px;

  z-index: 6;

  width: 30px;
  height: 49px;

  display: flex;
  justify-content: center;

  border:
    1px solid rgba(255, 255, 255, 0.24);

  border-radius: 999px;

  transform: translateX(-50%);
}

.scroll-indicator span {
  width: 4px;
  height: 8px;

  margin-top: 10px;

  border-radius: 999px;

  background: var(--gold-light);

  animation:
    scrollMovement 1.9s infinite;
}

@keyframes scrollMovement {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  40% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(18px);
  }
}

/* =========================
   CONTACTO
========================= */

.contact-section {
  position: relative;

  padding:
    120px 0;

  color: var(--text-dark);

  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      #f5f6f7,
      #ffffff
    );
}

.contact-decoration {
  position: absolute;

  top: -230px;
  right: -180px;

  width: 560px;
  height: 560px;

  border:
    1px solid rgba(8, 36, 63, 0.07);

  border-radius: 50%;

  box-shadow:
    0 0 0 75px rgba(8, 36, 63, 0.018),
    0 0 0 150px rgba(8, 36, 63, 0.012);
}

.contact-heading {
  position: relative;

  z-index: 2;

  display: flex;
  align-items: end;
  justify-content: space-between;

  gap: 45px;

  margin-bottom: 53px;
}

.contact-heading > div {
  max-width: 720px;
}

.section-label {
  margin:
    0 0 15px;

  color: var(--gold);

  font-size: 11px;
  font-weight: 900;

  text-transform: uppercase;

  letter-spacing: 0.22em;
}

.contact-heading h2 {
  margin: 0;

  color: var(--navy-deep);

  font-size:
    clamp(38px, 5vw, 62px);

  line-height: 1.03;

  letter-spacing: -0.045em;
}

.contact-heading > p {
  max-width: 360px;

  margin: 0;

  color: var(--text-gray);

  font-size: 16px;
}

.contact-layout {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    0.93fr 1.07fr;

  gap: 28px;
}

.address-card {
  overflow: hidden;

  border-radius: 29px;

  box-shadow: var(--shadow);
}

.address-image {
  position: relative;

  min-height: 510px;
}

.address-image img {
  object-position: 60% center;
}

.address-image-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      0deg,
      rgba(4, 20, 38, 0.92),
      rgba(4, 20, 38, 0.1) 65%
    );
}

.address-image-content {
  position: absolute;

  left: 35px;
  right: 35px;
  bottom: 32px;

  color: var(--white);
}

.address-image-content span {
  color: var(--gold-light);

  font-size: 10px;
  font-weight: 900;

  text-transform: uppercase;

  letter-spacing: 0.18em;
}

.address-image-content h3 {
  margin:
    8px 0 2px;

  font-size:
    clamp(30px, 3.5vw, 45px);

  line-height: 1.05;
}

.address-image-content strong {
  display: block;

  font-size: 23px;
}

.address-image-content p {
  margin:
    7px 0 0;

  color:
    rgba(255, 255, 255, 0.7);
}

.contact-cards {
  display: flex;
  flex-direction: column;

  gap: 14px;
}

.contact-card {
  min-height: 118px;

  display: flex;
  align-items: center;

  gap: 21px;

  padding:
    24px 26px;

  border:
    1px solid rgba(8, 36, 63, 0.1);

  border-radius: 21px;

  background: var(--white);

  box-shadow:
    0 14px 40px rgba(6, 29, 50, 0.075);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-4px);

  box-shadow:
    0 22px 55px rgba(6, 29, 50, 0.12);
}

.contact-icon {
  flex:
    0 0 47px;

  width: 47px;
  height: 47px;

  display: grid;
  place-items: center;

  color: var(--gold);

  border:
    1px solid rgba(203, 161, 62, 0.27);

  border-radius: 14px;

  background:
    rgba(203, 161, 62, 0.07);
}

.contact-icon span {
  font-size: 10px;
  font-weight: 900;

  letter-spacing: 0.1em;
}

.contact-card > div:last-child {
  min-width: 0;

  display: flex;
  flex-direction: column;

  gap: 4px;
}

.contact-card-label {
  margin-bottom: 3px;

  color: var(--text-gray);

  font-size: 9px;
  font-weight: 900;

  text-transform: uppercase;

  letter-spacing: 0.17em;
}

.contact-card a {
  color: var(--navy);

  font-size: 16px;
  font-weight: 800;

  overflow-wrap: anywhere;
}

.contact-card a:hover {
  color: var(--gold);
}

.contact-buttons {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 12px;

  margin-top: 6px;
}

.button-dark {
  color: var(--white);

  background: var(--navy-deep);

  box-shadow:
    0 15px 34px rgba(4, 20, 38, 0.2);
}

.button-whatsapp {
  color: var(--white);

  background:
    linear-gradient(
      135deg,
      #1cae68,
      #127a4a
    );

  box-shadow:
    0 15px 34px rgba(28, 174, 104, 0.2);
}

/* =========================
   FOOTER
========================= */

.footer {
  padding:
    35px 0;

  color:
    rgba(255, 255, 255, 0.62);

  background: #031323;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

.footer-content > div {
  display: flex;
  flex-direction: column;

  gap: 5px;
}

.footer-content strong {
  color: var(--white);

  font-size: 11px;

  letter-spacing: 0.12em;
}

.footer-content span,
.footer-content a {
  font-size: 10px;
}

.footer-information {
  align-items: flex-end;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1050px) {

  .hero-grid {
    grid-template-columns:
      0.9fr 1.1fr;

    gap: 38px;
  }

  .visual-composition {
    min-height: 590px;
  }

  .image-main {
    height: 515px;
  }

  .image-secondary {
    height: 225px;
  }

  .image-tertiary {
    height: 250px;
  }

  .office-card {
    right: 27%;
  }

}

/* =========================
   TABLET VERTICAL
========================= */

@media (max-width: 850px) {

  .header {
    position: absolute;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns:
      1fr;

    padding:
      140px 0 90px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .visual-composition {
    min-height: 670px;

    margin-top: 15px;
  }

  .contact-heading {
    align-items: flex-start;
    flex-direction: column;

    gap: 18px;
  }

  .contact-layout {
    grid-template-columns:
      1fr;
  }

  .address-image {
    min-height: 460px;
  }

}

/* =========================
   CELULARES
========================= */

@media (max-width: 600px) {

  :root {
    --container:
      min(100% - 28px, 1240px);
  }

  .header {
    padding-top: 20px;
  }

  .brand {
    gap: 9px;
  }

  .brand-symbol {
    min-width: 47px;

    font-size: 28px;

    letter-spacing: -7px;
  }

  .brand-name strong {
    font-size: 16px;
  }

  .brand-name > span {
    font-size: 8px;
  }

  .brand-name small {
    font-size: 5px;
  }

  .header-button {
    min-height: 38px;

    padding-inline: 15px;

    font-size: 10px;
  }

  .hero-grid {
    padding:
      125px 0 74px;
  }

  .official-label {
    margin-bottom: 23px;
  }

  h1 {
    font-size:
      clamp(50px, 15vw, 70px);
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-actions {
    display: grid;

    grid-template-columns:
      1fr 1fr;
  }

  .button {
    width: 100%;

    padding-inline: 17px;
  }

  .quick-contact {
    align-items: flex-start;
    flex-direction: column;

    gap: 7px;
  }

  .visual-composition {
    min-height: 655px;
  }

  .image-main {
    top: 5px;
    left: 0;

    width: 83%;
    height: 425px;
  }

  .image-secondary {
    top: 0;
    right: 0;

    width: 43%;
    height: 205px;
  }

  .image-tertiary {
    right: 0;
    bottom: 10px;

    width: 74%;
    height: 260px;
  }

  .office-card {
    left: 14px;
    right: auto;
    bottom: 32px;
  }

  .scroll-indicator {
    display: none;
  }

  .contact-section {
    padding:
      85px 0;
  }

  .contact-heading {
    margin-bottom: 35px;
  }

  .contact-heading h2 {
    font-size: 40px;
  }

  .address-image {
    min-height: 390px;
  }

  .address-image-content {
    left: 23px;
    right: 23px;
    bottom: 23px;
  }

  .contact-card {
    align-items: flex-start;

    padding:
      21px 19px;
  }

  .contact-card a {
    font-size: 14px;
  }

  .contact-buttons {
    grid-template-columns:
      1fr;
  }

  .footer-content {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-information {
    align-items: flex-start;
  }

}

/* =========================
   CELULARES PEQUEÑOS
========================= */

@media (max-width: 390px) {

  .header-button {
    display: none;
  }

  .hero-actions {
    grid-template-columns:
      1fr;
  }

  .visual-composition {
    min-height: 740px;
  }

  .image-main {
    width: 100%;
    height: 385px;
  }

  .image-secondary {
    top: 405px;
    left: 0;
    right: auto;

    width: 47%;
    height: 205px;
  }

  .image-tertiary {
    right: 0;
    bottom: 0;

    width: 49%;
    height: 310px;
  }

  .office-card {
    left: 18px;
    bottom: 22px;
  }

}