/* 
@import './header.css'; 
@import './banner.css';

*/

:root {
  /* colors */
  --azul: #1a446d;
  --azullogo: #416caa;
  --azulobs: #060644;
  --blanco: #fafafa;
  --azulTrans: #507aae;

  /* Spacing Mobile First (base) */
  --spacing-xs: 0.5rem; /* 8px */
  --spacing-sm: 1rem; /* 16px */
  --spacing-md: 1.5rem; /* 24px */
  --spacing-lg: 2rem; /* 32px */
  --spacing-xl: 3rem; /* 48px */
  --spacing-xxl: 4rem; /* 64px */

  /* Container Max Widths */
  --container-mobile: 100%;
  --container-tablet: 768px;
  --container-desktop: 1024px;
  --container-wide: 1200px;
  --container-full: 1400px;

  --header-height: 80px;

  /* Breakpoints */
  --breakpoint-tablet: 768px;
  --breakpoint-desktop: 1024px;
  --breakpoint-wide: 1280px;
  --breakpoint-xl: 1536px;

  --font-h1: 2rem;
  --font-h2: 1.6rem;
  --font-h3: 1.35rem;
  --font-h4: 1.15rem;

  --font-body: 0.95rem;
  --font-body-sm: 0.9rem;
  --font-caption: 0.75rem;

  --font-heading: 'Inter', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, #e8f0f7 0%, #dae0f9 50%, #f0f4f8 100%);
  background-size: 400% 400%;
  animation: gradientShift 5s ease infinite;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;

  /* ✅ Deshabilitar selección de texto */
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+/Edge */
  user-select: none; /* Standard */

   font-family: var(--font-body);
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

main {
  position: relative;
  z-index: 1;
  background: transparent;
}

a,
li,
p,
label {
  /* font-family: "Momo Trust Sans", sans-serif;
  font-weight: 400; */
  font-optical-sizing: auto;
}

p {
  /* line-height: 1.5rem; */
  font-weight: 300;
  text-align: justify;
}


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

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

ul {
  list-style: none;
}

[v-cloak] {
  display: none !important;
}

/* default class */

.mb-1 {
  margin-bottom: 1rem;
}

.mb-05{
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 2rem;
}
.mb-3 {
  margin-bottom: 3rem;
}

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

/* Text stadarization */

.heading-1 {
  font-size: var(--font-h1);
  font-weight: 700;
  line-height: 1.2;
}

.heading-2 {
  font-size: var(--font-h2);
  font-weight: 600;
  line-height: 1.25;
}

.heading-3 {
  font-size: var(--font-h3);
  font-weight: 600;
  line-height: 1.3;
}

.heading-4 {
  font-size: var(--font-h4);
  font-weight: 500;
  line-height: 1.35;
}

.body {
  font-size: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
}

.body-sm {
  font-size: var(--font-body-sm);
  font-weight: 300;
  line-height: 1.5;
}

/* Descripcion despues de titulos */
.sec-desc{

  font-family:'Source Sans 3', sans-serif;
  font-size: 1.06rem;
  line-height: 1.4;
  font-weight: 400;

  @media (min-width: 768px) {
    font-size: 1.11rem;
  }
}

.caption {
  font-size: var(--font-caption);
  font-weight: 400;
  opacity: 0.8;
}

.link {
  font-size: var(--font-body);
  font-weight: 400;
  color: var(--azullogo);
  text-decoration: underline;
  cursor: pointer;
}

.li-text {
  font-size: var(--font-body-sm);
  line-height: 1.5;
}

.tag-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .heading-1 {
    font-size: 2rem;
  }
  .heading-2 {
    font-size: 1.9rem;
  }
  .heading-3 {
    font-size: 1.6rem;
  }
  .heading-4 {
    font-size: 1.25rem;
  }
  .body {
    font-size: 0.98rem;
  }
}

@media (min-width: 1024px) {
  .heading-1 {
    font-size: 2.5rem;
  }
  .heading-2 {
    font-size: 2.3rem;
  }
  .heading-3 {
    font-size: 1.8rem;
  }
  .heading-4 {
    font-size: 1.35rem;
  }
  /* .body {
    font-size: 1rem;
  } */
}

@media (min-width: 1280px) {
  .heading-1 {
    font-size: 2.6rem;
  }
  .heading-2 {
    font-size: 2.4rem;
  }
  .heading-3 {
    font-size: 1.65rem;
  }
  .heading-4 {
    font-size: 1rem;
  }
}

@media (min-width: 1536px) {
  .heading-1 {
    font-size: 3.6rem;
  }
  .heading-2 {
    font-size: 2.9rem;
  }
  .heading-3 {
    font-size: 2.2rem;
  }
}

/* Wrapper styles */

.wrapper {
  width: 100%;
  max-width: var(--container-mobile);

  @media (min-width: 768px) {
      max-width: var(--container-tablet);
    }

    @media (min-width: 1024px) {
      max-width: var(--container-desktop);
    }

    @media (min-width: 1280px) {
      max-width: var(--container-wide);
    }

    @media (min-width: 1536px) {
      max-width: var(--container-full);
    }
}

/* Animation classes */

.reveal {
  position: relative;
  opacity: 0;
}

.reveal.active {
  opacity: 1;
}

.reveal.active.fade-left {
  animation: fade-left 0.6s ease-in;
}

@-webkit-keyframes fade-left {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-left {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

.reveal.active.fade-right {
  animation: fade-right 0.6s ease-in;
}

@-webkit-keyframes fade-right {
  0% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-right {
  0% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

.reveal.active.fade-in {
  animation: fade-in 0.6s ease-in;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
