


:root {
  --dark: #060B35;
  --blue: #0A2777;
  --violet: #807DFE;
  --light: #B3C4E2;
  --green: #89E589;
  --white: #ffffff;
  --glass: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.16);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}


body {
  font-family: 'Outfit', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;

  cursor: url("../assets/iconos/cursor_a_blanco_chico.png") 10 5, auto !important;
}

a, button {
  cursor: url("../assets/iconos/cursor_a_blanco_chico.png") 10 5, pointer !important;
} 



body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;

  background:
    radial-gradient(circle at 18% 8%, rgba(128,125,254,0.85), transparent 32%),
    radial-gradient(circle at 85% 6%, rgba(137,229,137,0.62), transparent 26%),
    radial-gradient(circle at 62% 38%, rgba(179,196,226,0.48), transparent 34%),
    radial-gradient(circle at 40% 58%, rgba(128,125,254,0.58), transparent 38%),
    radial-gradient(circle at 20% 75%, rgba(179,196,226,0.38), transparent 28%),
    linear-gradient(
      180deg,
      #6f74ff 0%,
      #3845c8 28%,
      #18328f 58%,
      #07165d 100%
    );
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background-image:
    repeating-radial-gradient(
      circle at 20% 30%,
      rgba(255,255,255,0.08) 0,
      rgba(255,255,255,0.08) 1px,
      transparent 1px,
      transparent 3px
    );

  opacity: 0.22;
  mix-blend-mode: overlay;
}



/* NAV */

.nav {
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  width: auto;
  transform: none;
  padding: 14px 18px 14px 46px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 0;
  background: rgba(10,18,70,0.42);
  backdrop-filter: blur(6px);
  display: flex;
 justify-content: space-between;
gap: 0;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  z-index: 20;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
 
}

.brand {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  height: 40px;
  width: auto;
  display: block;
  transition: opacity 0.25s ease;
}

.logo-hover {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.brand:hover .logo-default {
  opacity: 0;
}

.brand:hover .logo-hover {
  opacity: 1;
}
.logo-mark {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 14px;

background: linear-gradient(
  135deg,
  #1917b0 0%,
  #807DFE 100%
);

border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;

  backdrop-filter: blur(12px);

  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}

.logo-mark img {
  position: absolute;
  width: 42px;
  height: 42px;
  object-fit: contain;
  transition: opacity 0.25s ease;
  
}

.ave-hover {
  opacity: 0;
}

.logo-mark:hover {
  background:  linear-gradient(
    135deg,
    #1917b0 0%,
    #807DFE 100%);
  border-color: white;
}

.logo-mark:hover .ave-default {
  opacity: 0;
}

.logo-mark:hover .ave-hover {
  opacity: 1;
}
.nav-links {
  display: flex;
  gap: 30px;
  margin-left: 0;

}

.menu-toggle {
  display: none;
}

.nav-links a {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 10px 10px;
  border-radius: 800px;

    background: linear-gradient(135deg,   #B3C4E2 0%, #d7e1f3 100%);
  color: #060B35;
  font-family: 'Quicksand', sans-serif;
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;

  transition:
    background 0.25s ease,
    transform 0.25s ease,
    color 0.25s ease;
}

.nav-links a:hover {
    background: linear-gradient(
    135deg,
    #1917b0 0%,
    #807DFE 100%
  );

  color: #ffffff;

  transform: translateY(-2px);

  box-shadow: 0 10px 30px rgba(128,125,254,0.22);
}

/* GENERAL */

section {
  padding: 110px 4%;
}

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.section-head {
  max-width: 650px;
  margin-bottom: 36px;
}

.eyebrow {
  display: inline-block;
  color: var(--green);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-left: 14px;
  position: relative;
}

.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  transform: translateY(-50%);
}
/* .eyebrow {
  display: inline-flex;
  padding: 7px 13px;
  border: 1px solid rgba(137,229,137,0.35);
  border-radius: 999px;
  color: var(--green);
  background: rgba(137,229,137,0.08);
  font-size: 13px;
  margin-bottom: 16px;
}*/

h1 {
   font-size: 55px;
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  text-transform: none;
  text-align: left;
  max-width: 700px;
}

.highlight-word {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.highlight-word::after {
  content: "";

  position: absolute;

  left: -10px;
  right: -10px;

  bottom: 2px;

  height: 28px;

  background: linear-gradient(
    90deg,
    rgba(128,125,254,0.55),
    rgba(137,229,137,0.45)
  );

  filter: blur(16px);

  border-radius: 999px;

  z-index: -1;

  opacity: 0.95;
}

h2 {
  font-size: clamp(32px, 4vw, 52px);

  line-height: 1;

  letter-spacing: -0.03em;

  font-family: 'Quicksand', sans-serif;
  font-weight: 500;

  color: #807DFE;
}

h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

p {
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  font-size: 16px;
}

.gradient-text {
 background: linear-gradient(135deg, #fff, var(--light), var(--green));
  -webkit-background-clip: text;
  color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 999px;
  color: var(--dark);
  background: linear-gradient(135deg,   #B3C4E2 0%, #d7e1f3 100%);
  text-decoration: none;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: 0.25s;
  box-shadow: 0 10px 30px rgba(137,229,137,0.2);
}

.btn:hover {
  background: linear-gradient(
    135deg,
    #1917b0 0%,
    #807DFE 100%
  );

  color: #ffffff;

  transform: translateY(-2px);

  box-shadow: 0 10px 30px rgba(128,125,254,0.22);
}

.btn-secondary {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  box-shadow: none;
}

.glass {
  background: linear-gradient(145deg, rgba(255,255,255,0.11), rgba(255,255,255,0.045));
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
}

/* HERO */

.hero {
  min-height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;
  font-family: 'Quicksand', sans-serif;
  position: relative;
  overflow: hidden;
  background: transparent;
position: relative;
z-index: 1;
  
    padding-bottom: 0px;
}

.hero-visual {
  grid-column: 2;
  justify-self: end;

  width: min(100%, 520px);
  overflow: hidden;
}

.hero-phone-image{

  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;

  border-radius: 42px;

  -webkit-mask-image: radial-gradient(
    ellipse at center,
    white 45%,
    rgba(255,255,255,0.9) 60%,
    rgba(255,255,255,0.5) 75%,
    transparent 100%
  );

  mask-image: radial-gradient(
    ellipse at center,
    white 45%,
    rgba(255,255,255,0.9) 60%,
    rgba(255,255,255,0.5) 75%,
    transparent 100%
  );
}

.hero-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 34px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
   width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-grid > .reveal {
  grid-column: 1;
  justify-self: start;
}

/*.hero p {
  max-width: 700px;
  text-align: left;
  margin: 26px 0 32px;
  font-size: 18px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
}*/

.hero-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}

.hero-card {
  position: relative;
  min-height: 540px;
  padding: 26px;
}

/*sacar*/
.phone {
  width: 260px;
  height: 520px;
  margin: 0 auto;
  border-radius: 42px;
  padding: 14px;
  background: linear-gradient(145deg, rgba(255,255,255,0.22), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.24);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  animation: float 5s ease-in-out infinite;
}

.phone-screen {
  height: 100%;
  border-radius: 31px;
  background:
    radial-gradient(circle at 20% 20%, rgba(137,229,137,0.34), transparent 28%),
    linear-gradient(160deg, #071051, #0A2777 55%, #807DFE);
  padding: 22px;
  overflow: hidden;
}

.app-top {
  width: 48%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
  margin: 0 auto 38px;
}

.app-title {
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
}

.app-bars {
  margin-top: 32px;
  display: grid;
  gap: 13px;
}

.app-bars span {
  height: 48px;
  border-radius: 18px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
}

.floating-chip {
  position: absolute;
  padding: 13px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--border);
  backdrop-filter: blur(15px);
  font-size: 14px;
  color: rgba(255,255,255,0.84);
}

.chip-1 { top: 70px; left: 22px; }
.chip-2 { right: 20px; top: 170px; }
.chip-3 { left: 35px; bottom: 90px; }

/* CARDS */

.grid {
  display: grid;
  gap: 24px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  padding: 28px;
  transition: 0.28s;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(137,229,137,0.45);
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(137,229,137,0.95), rgba(128,125,254,0.95));
  color: var(--dark);
  font-weight: 900;
  font-size: 20px;
}
/*SERVICIOS TRANSICION*/

/*SERVICIOS SECCION*/
#servicios {
  position: relative;
  z-index: 2;
 margin-top: -80px;
padding-top: 150px;

background:  transparent;
}

#servicios h2 {
  margin-top: -140px;
  color: #B3C4E2
}

#servicios h3 {
  color: #B3C4E2
;
}

#servicios p {
  color: rgba(255, 255, 255, 0.72);
}


/*#servicios .eyebrow {
  color: #e4e4e4;
}

#servicios .eyebrow::before {
  background: #f3f3f3;
}*/





/*SERVICIOS MENU*/

#servicios .container {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: 90px;
  align-items: start;
}

#servicios .section-head {
  margin-bottom: 0;
  position: sticky;
  top: 140px;
}

.services-content {
  position: relative;

  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 50px;

  height: auto;
  top: 0;
  bottom: 0;
}

.services-content::after {
  content: "";

  position: absolute;

  top: 10px;

  left: calc(35% + 25px);

  width: 1px;
  height: calc(100% - 20px);

  background: rgba(137,229,137,0.35);

  border-radius: 999px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 34px;

  padding-top: 10px;
  padding-right: 50px;

  border-right: none;
}

.service-tab {
  background: transparent;
  border: none;
  padding: 0;

  color: #89E589;

  font-family: 'Quicksand', sans-serif;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.1;

  text-align: left;

  cursor: pointer;

  opacity: 0.28;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.service-tab:hover,
.service-tab.active {
  opacity: 1;

  color: #89E589;

  transform: translateX(12px);
}

.service-detail {
  padding: 0;


  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

#serviceTitle {
  font-family: 'Quicksand', sans-serif;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 0.04em;

  color: #060B35;

  margin-bottom: 28px;
}

#serviceText {
  font-family: 'Quicksand', sans-serif;

  font-size: 18px;
  line-height: 1.9;
  letter-spacing: 0.03em;

  color: rgba(6,11,53,0.78);

  max-width: 520px;
}


/* PROCESS */

/*#proceso .eyebrow {
  color: #ffffff;
}

#proceso .eyebrow::before {
  background: #ffffff;
}*/

#proceso h2 {
  color: #B3C4E2;
 width: min(100%, 600px);
}

#proceso .container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

  .process-description {
  max-width: 560px;
  margin-top: 24px;
margin-left: 0;
  text-align: left;

  font-size: 17px;
  line-height: 1.9;

  color: rgba(255,255,255,0.72);
}

#proceso .section-head {
  position: sticky;
  top: 0;
  
}




.process-card h3 {
  font-size: 28px;

  margin-bottom: 24px;

  font-family: 'Quicksand', sans-serif;
  font-weight: 500;

  color: white;
}

.process-card p {
  max-width: 520px;

  font-size: 16px;

  line-height: 1.8;

  color: rgba(255,255,255,0.76);
}
/*efecto tarjetas*/

#proceso {
  min-height: auto;
  overflow: hidden;
}

.process-stack {
  position: relative;

  display: flex;
  flex-direction: column;

  gap: 28px;

 height: clamp(420px, 60vh, 500px);

  overflow-y: auto;
  overflow-x: hidden;

  padding-right: 14px;

  scroll-behavior: smooth;

    padding-top: 10px;
  padding-bottom: 20px;
}



/*flechas scroll*/
.process-stack-wrapper {
  width: 100%;
  max-width: 760px;

  margin-left: auto;

  display: flex;
  flex-direction: column;

  gap: 14px;
}

.process-scroll-arrow {
  position: relative;

  width: 100%;
  height: 2px;

  padding: 5px 0;

  border: none;
  outline: none;

  background: linear-gradient(
    90deg,
    rgba(137,229,137,0),
    rgba(137,229,137,0.55),
    rgba(137,229,137,0)
  );

  opacity: 0.75;

  cursor: pointer;

  z-index: 10;
}

.process-scroll-arrow:hover {
  opacity: 1;

  filter: drop-shadow(
    0 0 10px rgba(137,229,137,0.35)
  );

  transform: scaleY(1.8);

  transition:
    opacity 0.25s ease,
    filter 0.25s ease,
    transform 0.25s ease;
}

.process-scroll-arrow:hover::after {
  border-color: rgba(255,255,255,1);

  filter: drop-shadow(
    0 0 8px rgba(255,255,255,0.5)
  );

  transform:
    translateX(-50%)
    scale(1.12)
    rotate(45deg);
}

.arrow-up:hover::after {
  transform:
    translateX(-50%)
    scale(1.12)
    rotate(225deg);
}

.process-scroll-arrow::after {
  content: "";

  position: absolute;

  left: 50%;
 

  width: 12px;
  height: 12px;

  border-right: 2px solid rgba(255,255,255,0.7);
  border-bottom: 2px solid rgba(255,255,255,0.7);

  transform-origin: center;
}

.arrow-down::after {
  bottom: -15px;
  transform: translateX(-50%) rotate(45deg);
}

.arrow-up::after {
   top: -15px;
  transform: translateX(-50%) rotate(225deg);
}

/* scrollbar */

.process-stack::-webkit-scrollbar {
  width: 6px;
}

.process-stack::-webkit-scrollbar-track {
  background: transparent;
}

.process-stack::-webkit-scrollbar-thumb {
  background: rgba(137,229,137,0.35);
  border-radius: 999px;
}

.process-card {
  flex: 0 0 auto;

  min-height: 220px;

  padding: 34px 38px;

  border-radius: 30px;

  background: transparent !important;

  border: 1px solid #89E589;

  opacity: 0.28;

  filter: blur(3px);

  transform: scale(0.92);

  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    filter 0.45s ease,
    border-color 0.45s ease;
}



.process-card.active {
  opacity: 1;

  filter: blur(0);

  transform: scale(1);

  border-color: #89E589;
}

/* SECCION TEAM */

#equipo {
  padding-top: 0px;
  margin-top: -200px;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

.pill {
  position: relative;
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 0 16px;
}

.pill::before {
  content: "<";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-52%);
  color: var(--green);
  font-weight: 700;
}

.pill::after {
  content: "/>";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-52%);
  color: var(--green);
  font-weight: 700;
}

.team-description {
  max-width: 620px;
  margin-top: 24px;
margin-left: 0;
  text-align: left;

  font-size: 18px;
  line-height: 1.8;

  color: rgba(255,255,255,0.74);
}

.team-network {
  position: relative;

 width: clamp(340px, 42vw, 520px);
height: clamp(340px, 42vw, 520px);

 margin: 0 auto 0 0;

  transform: scale(0.82);
  transform-origin: center right;
}

.network-node {
  position: absolute;

  width: 90px;
  height: 90px;

  border-radius: 50%;

  background: rgba(255,255,255,0.05);

  border: 1px solid rgba(137,229,137,0.28);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;

  transition: transform 0.25s ease;

  backdrop-filter: blur(4px);
}

.network-node:hover {
  transform: scale(1.04);
}

.network-node img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.network-node span {
  position: absolute;

  color: #ffffff;

  font-family: 'Quicksand', sans-serif;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 0.04em;

  text-transform: uppercase;

  white-space: nowrap;

  opacity: 0.92;
}

/* MOBILE */

.node-1 span {
  left: -210px;
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
}

/* BACKEND */

.node-2 span {
  right: -190px;
  top: 50%;
  transform: translateY(-50%);
}

/* UX/UI */

.node-3 span {
 right: -180px;
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
}

/* PRODUCTO */

.node-4 span {
  right: -210px;
  top: 50%;
  transform: translateY(-50%);
}

/* ARQUITECTURA */

.node-5 span {
  left: -200px;
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
}

/* POSICIONES */

.node-1 {
  top: 100px;
  left: 190px;
}

.node-2 {
  top: 120px;
  right: 10px;
}

.node-3 {
  bottom: 100px;
  right: 0px;
}

.node-4 {
  bottom: 0;
  left: 250px;
}

.node-5 {
  top: 300px;
  left: 20px;
}

/* LINEAS */

.network-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(
  90deg,
  rgba(137,229,137,0.02),
  rgba(137,229,137,0.26),
  rgba(137,229,137,0.02)
);

  transform-origin: left center;
}

.line-1 {
  width: 90px;
  top: 150px;
  left: 380px;
  transform: rotate(190deg);
}

.line-2 {
  width: 60px;
  top: 250px;
  left: 435px;
  transform: rotate(66deg);
}

.line-3 {
  width: 80px;
  top: 450px;
  left: 330px;
  transform: rotate(-30deg);
}

.line-4 {
  width: 160px;
  top: 300px;
  left: 90px;
  transform: rotate(-61deg);
}


.team-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #060B35;
  background: #89E589;
  font-size: 22px;
}

.team-mini-card h3 {
  color: #ffffff;
  font-family: 'Quicksand', sans-serif;
  font-size: 20px;
  margin-bottom: 8px;
}

.team-mini-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}


#equipo .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.team-box {
  display: grid;
  grid-template-columns: minmax(360px, 500px) 1fr;
  align-items: flex-end;

  gap: clamp(60px, 10vw, 200px);

  width: 100%;
  padding: 0;
}


.team-box > div:first-child {
  width: 100%;
  max-width: 560px;
  margin: 0;
  text-align: left;
   transform: translateY(-80px);
}



#equipo h2 {
  text-align: left;
 width: min(100%, 600px);
  margin-top: clamp(120px, 20vw, 400px);
   font-size: clamp(44px, 4.5vw, 60px);
  line-height: 0.95;
  color: #B3C4E2;
}


/* FIN SECCION TEAM*/

section {
  position: relative;
  overflow: hidden;
}

/* CONTACT */
#contacto {
  padding-top: 0;
}

.contact-box {
   display: grid;
 grid-template-columns: minmax(360px, 500px) 1fr;
  gap: clamp(60px, 10vw, 200px);
  align-items: flex-start;
  padding: 0;
}

#contacto h2 {
  text-align: left;
 width: min(100%, 600px);
  font-size: clamp(44px, 4.5vw, 60px);
  line-height: 0.95;
  color: #B3C4E2;
}

#contacto p {
  max-width: 620px;
  margin-top: 24px;

  font-family: 'Quicksand', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 600;

  color: rgba(255,255,255,0.74);
}

#contacto .btn {
  margin-top: 24px;
}

.contact-box form {
  border: 1px solid #89E589;
  border-radius: 30px;

  padding: 24px;

  background: rgba(137, 229, 137, 0.04);

  width: 100%;
  margin-left: auto;
}

form {
  display: grid;
  gap: 20px;
}

input,
textarea {
  width: 100%;

  padding: 18px 0;

  background: transparent;

  border: none;
  border-bottom: 1px solid rgba(137,229,137,0.28);

  border-radius: 0;

  color: #ffffff;

  font-family: 'Quicksand', sans-serif;
  font-size: 20px;
  font-weight: 500;

  outline: none;

  transition:
    border-color 0.25s ease,
    color 0.25s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255,255,255,0.75);
}

input:focus,
textarea:focus {
  border-bottom-color: #89E589;
  color: #ffffff;
}

textarea {
  min-height: 160px;
  resize: none;
  line-height: 1.8;
}

/* ANIMATIONS */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-16px) rotate(1deg); }
}




/* GRACIAS */

/* MODAL GRACIAS */

.gracias-modal {
  position: fixed;
  inset: 0;
  z-index: 999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 24px;

  background: rgba(6, 11, 53, 0.55);
  backdrop-filter: blur(10px);

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.gracias-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.gracias-card {
  width: min(100%, 720px);
  padding: clamp(36px, 6vw, 64px);
  text-align: center;

  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.26), transparent 28%),
    linear-gradient(135deg, rgba(128,125,254,0.42), rgba(25,23,176,0.86));

  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 34px;

  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);

  box-shadow:
    0 30px 90px rgba(0,0,0,0.32),
    inset 0 1px 0 rgba(255,255,255,0.35);
}

.gracias-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  color: #ffffff;
  font-size: 42px;
  font-weight: 500;

  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.32);
}

.gracias-card h2 {
  color: #ffffff;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  margin-bottom: 24px;
}

.gracias-card p {
  color: rgba(255,255,255,0.9);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
  margin-bottom: 34px;
}

.volver-inicio {
  color: #060B35;
}


/* FOOTER */

.footer {
  position: relative;

  margin-top: 140px;
  padding: 80px 8% 36px;

  border-top: 1px solid rgba(255,255,255,0.08);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.02),
      rgba(255,255,255,0.01)
    );

  overflow: hidden;
}

.footer::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(128,125,254,0.18),
      transparent 28%
    ),
    radial-gradient(
      circle at 90% 20%,
      rgba(137,229,137,0.12),
      transparent 24%
    );

  pointer-events: none;
}

.footer-inner {
  position: relative;

  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;

  gap: 40px;
}


.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 28px;
}

.footer-ave {
  width: 120px;
  height: 120px;

  object-fit: contain;

   display: block;
  margin: 0 auto;
}

.footer-logo {
   width: 360px;
  height: auto;
   display: block;
  margin: 0 auto;
}

.footer-brand p {
  max-width: 320px;

  font-size: 15px;
  line-height: 1.8;

  color: rgba(255,255,255,0.62);
}

.footer-column {
  display: flex;
  flex-direction: column;

  gap: 18px;
}

.footer-title {
  font-family: 'Quicksand', sans-serif;

  font-size: 15px;
  font-weight: 700;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: #89E589;
}

.footer-column a {
  line-height: 2.2;
}
.footer-column a,
.footer-contact span {
  color: rgba(255,255,255,0.72);

  text-decoration: none;

  font-size: 15px;

  transition: 0.25s ease;
}

.footer-column a:hover {
  color: #ffffff;

  transform: translateX(4px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;

  line-height: 2.2;
}

.footer-contact-icon {
  width: 18px;
  height: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.footer-contact-icon img {
  width: 18px;
  height: 18px;

  object-fit: contain;

  opacity: 0.95;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;

  margin-top: 6px;
}

.footer-socials a {
  width: 56px;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 16px;

  background: rgba(255,255,255,0.05);

  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(10px);

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.footer-socials a img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  opacity: 0.95;
}

.footer-socials a:hover {
  transform: translateY(-3px);

  background: rgba(137,229,137,0.10);

  border-color: rgba(137,229,137,0.30);
}

.footer-bottom {
  grid-column: 1 / -1;

  width: 100%;
  margin: 70px 0 0;
  padding-top: 24px;

  border-top: 1px solid rgba(255,255,255,0.08);

  color: rgba(255,255,255,0.45);
  font-size: 13px;

  text-align: center;
}



