*,
*:after,
*:before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font: inherit;
}
html {
  scroll-behavior: smooth;
}

:root {    
  --offset-size: 80px;
  --color-primary: #0D2263;
  --color-acent: #2FBE47;  
  --color-neutral-dark: #011626;
  --color-neutral-light: #3A4D5D;
  --hero-bg: #ECF6FE;
  --font-color-dark: var(--color-primary);
  --font-color-light: var(--color-neutral-light); 
}

img,
picture {
  width: 100%;
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: #011626;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /*word-wrap: break-word;*/
  font-weight: 600;
  color: var(--font-color-dark);
}

h1 {
  font-size: 44px;
  line-height: 1.1;
  margin-bottom: 2rem;
  @media (max-width: 900px) {    
    font-size: 32px;      
  }
}
h2 {
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 2rem;
  @media (max-width: 900px) {    
    font-size: 28px; 
    margin-bottom: 1rem;     
  }
}
h3 {
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 2rem;
  @media (max-width: 900px) {    
    font-size: 24px;  
    margin-bottom: 2rem;    
  }
}
.h3 {
  font-size: 22px !important;
  line-height: 1.1;
  margin-bottom: 1rem;
}

ul {
  list-style-position: outside; 
  padding-left: 20px;   
}
li {
  margin-bottom: 0.75rem;
  color: var(--font-color-light);  
}

p {
  font-size: 18px;
  font-weight: 300;  
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  color: var(--font-color-light);
  @media (max-width: 900px) {    
    font-size: 16px;      
  }
}


.txt-small {
  font-size: 18px; 
}
.txt-white {
  color: white;
}

body {  
  background-color: #ffffff;  
  color: #080912;  
  line-height: 1.4;  
  font-family: "Lexend", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

.cl-6 {
  flex: 0 0 100%;
  max-width: 100%;  

  @media (min-width: 900px) {    
    flex: 0 0 50%;        
    max-width: 50%;    
  }
}

.cl-4 {
  flex: 0 0 100%;
  max-width: 100%;  

  @media (min-width: 992px) {    
    flex: 0 0 33.3333%;        
    max-width: 33.3333%;    
  }
}


.btn {
  display: inline-block; 
  padding: 12px 24px; 
  color: white;
  border-radius: 8px;
  background-color: #2FBE47;
  box-shadow: 0px 8px 16px rgba(47, 190, 71, 0.36);
  transition: all 0.3s ease-in-out;
  
}
.btn:hover {
  background-color: #45d45d;
  box-shadow: 0px 8px 16px rgba(47, 190, 71, 0.7);
}

.w100 {
  width: 100% !important;
  text-align: center;
  margin-bottom: 2rem
}

.btn-secondary {
  display: inline-block; 
  width: 100%;
  padding: 16px 32px;   
  margin-bottom: 2rem;
  border-radius: 8px;
  text-align: center;
  border: 2px solid var(--font-color-dark);  
  transition: all 0.3s ease-in-out;
}
.btn-secondary:hover {
  border: 2px solid #45d45d; 
}

.siteHeader {
    width: 100%;
    height: 80px;
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.65);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    z-index: 20;
}

.siteHeader-wrapper {
    width: 100%;    
    max-width: 1440px;
    padding: 0 30px;
    margin-left: auto;
    margin-right: auto; 
    display: flex;
    flex-direction: row;
    justify-content: space-between;     
}

.siteHeader-Nav {
    display: flex;
    align-items: center;
    @media (max-width: 900px) {    
      display: none;
    }
}
.siteHeader-Nav-item {
    position: relative;
    margin-right: 2rem;    
}
.siteHeader-Nav-item::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background-color: var(--color-acent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;      
}
.siteHeader-Nav-item:hover::after {
  transform: scaleX(1);
}


.hero {
  width: 100%;
  background-color: var(--hero-bg)
}
.content-wrapper {
  width: 100%;    
  max-width: 1440px;
  margin: 0 auto;
  padding: 30px 30px 0 30px;
  display: flex;
  flex-wrap: wrap; 
  justify-content: center;
  align-items: center;    
}

.hero-copy {
  p {
    font-size: 20px;
  }
}

.hero-figure{
  @media (max-width: 900px) {    
    width: 100%;
    max-width: 600px;    
  }
}

.beneficios {
  scroll-margin-top: var(--offset-size);
  width: 100%;    
  max-width: 1440px;
  margin: 0 auto;
  padding: 4rem 30px;
  @media (max-width: 900px) {    
    padding: 4rem 30px 2rem 30px;
  }
  
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  h2 {
    margin-bottom: 1rem;
  }
}

.beneficios-grid {
  --column-count: 3;
  display: grid;
  gap: 1rem;
  grid-template-columns: 
    repeat(var(--column-count), 1fr);
  
  @media (width < 1200px) {
    --column-count: 2;
  }
  @media (width < 700px) {
    --column-count: 1;
  }
}

.beneficios-item {
  padding: 2rem;  
  .beneficio-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 12px;
  }
  @media (max-width: 900px) {    
    padding: 0rem;
  }
}

.info {
  scroll-margin-top: var(--offset-size);
  width: 100%; 
  padding: 4rem 0;    
  background-color: #F5F9F9;
  @media (max-width: 900px) {    
    padding: 2rem 0; 
  }
}
.content-image {  
  width: 100%;
  max-width: 572px; 
  
  @media (max-width: 900px) {    
    width: 100%;
    max-width: 600px;   
    margin-bottom: 2rem; 
  }
}
.order {
  @media (max-width: 900px) {    
    order: 2; 
  }
}

.steps {  
  position: relative;
  margin: 0;
  padding: 0;
  list-style-type: none;
  list-style-position: outside;
  padding-left: 1.5em;  
}
.steps li {
  position: relative;
  font-size: 18px;
  font-weight: 300;
  counter-increment: step-counter;
  margin-bottom: 36px;
  text-indent: -2.6em;
  padding-left: 2.6em;
  z-index: 9;
  @media (max-width: 900px) {    
    font-size: 16px;   
    text-indent: -2.9em;
  padding-left: 2.9em;   
  }
}
.steps li::before {
  position: relative;
  content: counter(step-counter);
  margin-right: 15px;
  font-size: 80%;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 999px;
  background-color: white;
  border: 2px solid #1F7DFA;
  box-shadow: 0px 0px 0px 5px white, 0px 3px 6px 8px rgba(0, 0, 0, 0.1);  
  z-index: 9;
}
.steps::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 95%;
  background-color: #CFD2D5;
  top: 0;
  left: 38px;
  z-index: 0;
}

.planes {
  scroll-margin-top: var(--offset-size);
  width: 100%;  
  padding: 4rem 0;
  background: rgb(85,122,250);
  background: linear-gradient(0deg, rgba(13,34,99,1) 0%, rgba(13,34,99,1) 50%, rgba(255,255,255,1) 50%);
  @media (max-width: 900px) {    
    padding: 2rem 0;
    background: linear-gradient(0deg, rgba(13,34,99,1) 0%, rgba(13,34,99,1) 80%, rgba(255,255,255,1) 80%); 
  }
}

.planes-grid {
  --column-count: 3;
  margin-bottom: 4rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 
    repeat(var(--column-count), 1fr);
  
  @media (width < 1200px) {
    --column-count: 2;
  }
  @media (width < 700px) {
    --column-count: 1;
  }
}

.plan {
  padding: 2rem;
  background-color: white;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  
  h4, h3 {
    text-align: center;
  }
  h4{
    margin-bottom: 1rem;
    color: #1F7DFA;
  }
  p, li {
    font-size: 16px !important;    
    font-weight: 300;    
  }
}

.registro {
  width: 100%;
}
.registro-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.newsletter-form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0 0.5rem;

  @media (max-width: 900px) {    
    padding: 0;    
  }
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem;
  margin-right: 1rem;  
  border: 1px solid #ccc;
  border-radius: 4px;  
}

.footer {
  padding: 1rem 0;
  background-color: white;
  border-top: 8px solid #50D85D ;
}

.footer-wrapper {
  width: 100%;    
  max-width: 1440px;
  margin: 0 auto;
  padding: 30px 30px 0 30px;
  display: flex;
  flex-wrap: wrap; 
  justify-content: start;
  align-items: center;  
  @media (max-width: 900px) {    
    justify-content: center;    
  }  
}

.footer-logo-wrapper {
p {
  font-size: 12px;
}
}

.footer-logo {
  width: 100%;
  max-width: 130px;
  margin-bottom: 0.5rem;
}











