/* =========================
   RESET Y BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #0A0A0F;
  color: #17151f;
  line-height: 1.5;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

ul {
  list-style: none;
}

/* =========================
   VARIABLES
========================= */
:root {
  --bg-dark: #0A0A0F;
  --bg-dark-secondary: #10081e;
  --bg-light: #f3f3f6;
  --surface: #ffffff;
  --surface-soft: #f7f7fb;
  --text-dark: #0A0A0F;
  --text-light: #f7f4ff;
  --text-muted: #9a96ad;
  --text-muted-light: #94A3B8;
  --primary: #7C3AED;
  --primary-strong: #5f19ff;
  --border-soft: rgba(124, 61, 255, 0.2);
  --shadow-soft: 0 20px 60px rgba(18, 8, 38, 0.14);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
}

/* =========================
   UTILIDADES GLOBALES
========================= */
.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.section-label {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}

.section-heading {
  margin-bottom: 80px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.section-heading > p:last-child {
  max-width: 720px;
  color: #59556b;
}

.section-heading-center {
  text-align: center;
}

.section-heading-center > p:last-child {
  margin-inline: auto;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}

/* =========================
   BOTONES
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  transition: 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.hero-btn {
  min-height: 74px;
  padding: 0 28px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  gap: 14px;
}

.hero-btn-text {
  display: inline-flex;
  align-items: center;
}

.hero-btn-primary {
  background: #f5f5f6;
  color: #13101f;
  border: 1px solid transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.hero-btn-primary:hover {
  background: #ffffff;
}

.hero-btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  line-height: 1;
  transform: translateY(-1px);
}

.hero-btn-showreel {
  position: relative;
  overflow: hidden;
  min-width: 270px;
  justify-content: center;
  padding: 0 30px 0 22px;
  background: rgba(7, 4, 16, 0.72);
  color: #ffffff;
  border: 1px solid rgba(124, 61, 255, 0.85);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 30px rgba(124, 61, 255, 0.12);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.hero-btn-showreel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
  135deg,
  #6922ff,
  #8c35ff 48%,
  #6822ff
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}

.hero-btn-showreel > * {
  position: relative;
  z-index: 1;
}

.hero-btn-showreel:hover {
  transform: scale(1.02);
  border-color: rgba(182, 108, 255, 1);
  box-shadow:
    0 14px 40px rgba(124, 61, 255, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.hero-btn-showreel:hover::before {
  opacity: 1;
}

.hero-btn-play {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  transition:
    background 0.35s ease,
    transform 0.35s ease;
}

.hero-btn-showreel:hover .hero-btn-play {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.04);
}

.play-icon {
  font-size: 0.9rem;
  line-height: 1;
  color: #ffffff;
  transform: translateX(1px);
}

.hero-btn-showreel .hero-btn-text {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.92rem;
}

.btn-primary {
  background: #ffffff;
  color: #13101f;
}

.btn-primary:hover {
  background: #ece8f8;
}

.btn-dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text-light);
}

.btn-dark:hover {
  background: rgba(255, 255, 255, 0.11);
}

.btn-light {
  min-height: 50px;
  padding: 0 28px;
  border-radius: 18px;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
  background: #ffffff;
  color: #17151f;
}

.btn-light:hover {
  background: #ebe8f5;
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text-light);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.07);
}

.btn-outline-light {
  background: transparent;
  border-color: var(--border-soft);
  color: var(--primary);
}

.btn-outline-light:hover {
  background: rgba(124, 61, 255, 0.06);
}


/* =========================
   HEADER
========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 0;
  background: linear-gradient(to bottom, rgba(8, 5, 17, 0.96), rgba(8, 5, 17, 0.78));
  backdrop-filter: blur(10px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Nuevo contenedor del lado derecho */
.nav-group {
  display: flex;
  align-items: center;
  gap: 26px; /* distancia entre menú y botón */
  margin-left: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 38px; /* distancia entre links */
}

.nav a {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted-light);
  transition: color 0.2s ease;
}

.nav a:hover {
  color: #ffffff;
}

.nav-contact {
  min-height: 45px;
  padding: 0 20px;
  border-radius: 16px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  overflow: hidden;
  padding: 0 0 140px;
  background: #0A0A0F;
  /*background:
    radial-gradient(circle at 75% 30%, rgba(124, 61, 255, 0.26), transparent 26%),
    radial-gradient(circle at 20% 15%, rgba(124, 61, 255, 0.12), transparent 20%),
    linear-gradient(180deg, #070410 0%, #090513 100%);
  */
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto auto 0 50%;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 61, 255, 0.15), transparent 70%);
  transform: translateX(-5%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  margin-bottom: 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: #CBD5E1;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary); /* tu color primario */
  flex-shrink: 0;
}

.hero h1 {
  color: #ffffff;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 1.1;
  letter-spacing: -0.06em;
  margin-bottom: 22px;

  text-shadow:
    0 0 8px rgba(124, 61, 255, 0.7),
    0 0 18px rgba(124, 61, 255, 0.45),
    0 0 32px rgba(124, 61, 255, 0.25),
    0 0 60px rgba(124, 61, 255, 0.15);
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title-line {
  display: block;
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    filter 0.45s ease;
  will-change: opacity, transform, filter;
}

.hero-title.is-changing .hero-title-line {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(6px);
}

.hero-description {
  max-width: 540px;
  color: var(--text-muted-light);
  font-size: 1.02rem;
  margin-bottom: 42px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 680px;
  overflow: visible;
}

.hero-media-frame {
 position: relative;
  width: 100%;
  max-width: 980px;
  border-radius: 3%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}
/*
.hero-media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(7, 4, 16, 0.92) 0%, rgba(7, 4, 16, 0) 22%),
    linear-gradient(to left, rgba(7, 4, 16, 0.15) 0%, rgba(7, 4, 16, 0) 14%),
    linear-gradient(to top, rgba(7, 4, 16, 0.28) 0%, rgba(7, 4, 16, 0) 18%);
  pointer-events: none;
}
*/
.hero-video {
  display: block;
  width: 150%;
  max-width: none;
  height: auto;
  object-fit: cover;
  transform: none;
  /*
  filter: drop-shadow(0 0 50px rgba(124, 61, 255, 0.16));
  */
  mix-blend-mode: screen;
  
}

/* =========================
   HERO SCROLL INDICATOR
========================= */
.hero-scroll {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.7;
}

.hero-scroll-text {
  font-size: 0.5rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(241, 245, 249, 1);
}

/* línea vertical */
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(
    to bottom,
    rgba(124, 61, 255, 1),
    rgba(124, 61, 255, 0)
  );
}

/* =========================
   ABOUT
========================= */
.about {
  padding: 100px 0 160px;
  background: var(--bg-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
}

.profile-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #dddddf;
  min-height: 620px;
  box-shadow: var(--shadow-soft);
}

.profile-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 4, 12, 0.82) 0%,
    rgba(5, 4, 12, 0.34) 18%,
    rgba(5, 4, 12, 0.08) 34%,
    rgba(5, 4, 12, 0) 52%
  );
  pointer-events: none;
}

.profile-info {
  position: absolute;
  left: 32px;
  bottom: 32px;
  z-index: 2;
  color: #ffffff;
}

.profile-role {
  margin-bottom: 8px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #7c3dff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}

.profile-info h2 {
  font-size: 1.55rem;
  line-height: 0.95;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.about-content h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin-bottom: 24px;
}

.about-content h2 span {
  color: var(--primary);
}

.about-content > p {
  max-width: 650px;
  color: #475569;
  margin-bottom: 30px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.skill-card {
  padding: 22px;
  border: 1px solid rgba(124, 61, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.skill-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.skill-card p {
  color: #6d677f;
  font-size: 0.92rem;
}

/* =========================
   SERVICES
========================= */
.services {
  padding: 100px 0 150px;
  background:
    radial-gradient(circle at 2% 50%, rgba(124, 61, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #090513 0%, #0a0615 100%);
  color: var(--text-light);
}

.services .section-heading > p:last-child {
  color: var(--text-muted-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 40px;
  border-radius: 24px;
  background: #f8f7fb;
  color: var(--text-dark);
}

.service-icon {
  height: auto;
  width: 27px;
  margin-bottom: 30px;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.service-card p {
  color: #475569;
  font-size: 0.95rem;
  margin-bottom: 50px;
}

.service-link {
  margin-top: auto;
  align-self: flex-end;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(23, 21, 31, 0.12);
}

.service-link img {
  width: 13px;
  height: 13px;
  object-fit: contain;
}
/* =========================
   PORTFOLIO
========================= */
.portfolio {
  padding: 95px 0 90px;
  background: var(--bg-light);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px 32px;
}

.project-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: 24px;
  background: #dde1e1;
  box-shadow: var(--shadow-soft);
 transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center;
  cursor: pointer;
}

.project-card-large {
  grid-column: 1 / -1;
  min-height: 520px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.5s cubic-bezier(0.22, 1, 0.36, 1);

  transform: scale(1);
  filter: grayscale(0%) brightness(1);
}

.project-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 34px 28px 28px;
  background: linear-gradient(to top, rgba(6, 5, 14, 0.84), rgba(6, 5, 14, 0));
  color: #ffffff;
  transition: all 0.35s ease;
}

.project-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #6f2dff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.project-overlay h3 {
  font-size: clamp(1.35rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

/* Contenedor animable */
.project-overlay h3,
.project-tag {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Párrafo oculto */
.project-description {
  margin-top: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Cuando el usuario entra al grid, todas se ponen grises */
.portfolio-grid:hover .project-card img {
  filter: grayscale(85%) brightness(0.92);
}

/* La card activa recupera color */
.portfolio-grid .project-card:hover img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.04);
}

/* Hover general de la card*/
.project-card:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 20px 55px rgba(18, 8, 38, 0.16);
}

/*
.project-card:hover img {
  transform: scale(1.06);
}
 */

.project-card:hover .project-tag,
.project-card:hover .project-overlay h3 {
  transform: translateY(-8px);
}

.project-card:hover .project-description {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}

/* =========================
   CTA BANNER
========================= */
.cta-banner {
  padding: 0 0 100px;
  background: linear-gradient(180deg, var(--bg-light) 0 40%, #090513 10% 100%);
}

.cta-box {
  position: relative;
  overflow: hidden;
  padding: 72px 24px;
  border-radius: 32px;
  background: linear-gradient(135deg, #6922ff, #8c35ff 48%, #6822ff);
  text-align: center;
  color: #ffffff;
  box-shadow: 0 30px 80px rgba(94, 22, 255, 0.35);
}

.cta-box::before,
.cta-box::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.cta-box::before {
  top: -120px;
  left: -80px;
}

.cta-box::after {
  right: -90px;
  bottom: -130px;
}

.cta-box h2 {
  max-width: 900px;
  margin: 0 auto 16px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.cta-box p {
  max-width: 640px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.88);
}

.cta-contact {
  min-height: 65px;
  padding: 0 28px;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #ffffff;
  color: #6922ff;
}

/* =========================
   FOOTER
========================= */
.footer {
  padding: 70px 0 70px;
  background: #090513;
  color: var(--text-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: 40px;
}

.footer-logo {
  margin-bottom: 18px;
}

.footer p {
  max-width: 360px;
  color: var(--text-muted-light);
}

.footer h3 {
  margin-bottom: 16px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #ffffff;
}

.footer ul {
  display: grid;
  gap: 12px;
}

.footer li a {
  color: var(--text-muted-light);
}

.footer li a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted-light);
  text-align: center;
  white-space: nowrap; /* 🔥 evita que se rompa en 2 líneas */
}


/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .hero-grid,
  .about-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual img {
    margin-inline: auto;
  }
}

@media (max-width: 820px) {
  .header {
    position: sticky;
    top: 0;
  }

  .navbar {
    position: relative;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-group {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(9, 5, 19, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  }

  .nav-group.is-open {
    display: flex;
  }

  .nav {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .nav a {
    width: 100%;
    font-size: 0.9rem;
  }

  .nav-contact {
    width: 100%;
    justify-content: center;
  }

  .portfolio-grid,
  .skills-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .project-card-large {
    min-height: 360px;
  }

  .profile-card {
    min-height: 460px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .hero,
  .about,
  .services,
  .portfolio {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .cta-box {
    padding: 56px 18px;
  }
}
