/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* GLOBAL */

:root{
    --clr-light-blue: #32BFD2;
    --clr-blue: #188796;
    --clr-dark-blue: #002A30;
    --clr-gray: #444444;
    --clr-light-gray: #363636;
    --clr-black: #232323;
}

html{
    scroll-behavior: smooth;
}

body, *{
    padding: 0;
    margin: 0;
    box-sizing: border-box;

    font-family: 'Poppins', sans-serif;
}

body, section{
  overflow-x: hidden;
}

ul li{
    list-style: none;
}

button{
  border: none;
}

a, button{
  font-family: inherit;
  cursor: pointer;
}

a{
    text-decoration: none;
}

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

section{
  padding: 48px 20px;
}

.container{
  margin: 0 auto;
}

.title-section{
  margin-bottom: 30px;
  font-size: 28px;
  text-align: center;
  color: var(--clr-black);
}

.cta{
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;

  color: #FFF;
  background: var(--clr-light-blue);
  display: inline-block;
}

.whatsapp-link{
  width: 70px;
  height: 70px;
  padding: 15px;
  border-radius: 50%;

  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;

  background: #04b545;
}

/* HEADER */
.header{
  padding: 20px;
  position: relative;
  z-index: 1000;

  display: flex;
  justify-content: center;
}

.logo img{
  width: 110px;
}

/* HERO */
.hero-section{
  padding: 0 20px 40px 20px;
  position: relative;

  background-image: url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.hero-section::before{
  z-index: 777;
  content: '';
  position: absolute;
  background: rgba(0, 88, 104, 0.4);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.hero-container{
  max-width: 970px;
  margin: 0 auto;
}

.hero-content{
  max-width: 360px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1000;

  color: #FFF;

  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title{
  font-size: 22px;
}

.hero-form{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-item{
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  font-weight: 500;
  background: #ffffff;
}

.input-item:placeholder{
  color: #5A5A5A;
}

.radio-group{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.radio-group label{
  font-weight: 500;
}

/* STAGES SECTION */
.stages-section .title-section{
  margin-bottom: 60px;
}

.stages-topics{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.stage-item{
  width: 200px;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.stage-item img{
  width: 100px;
}

.stage-info p{
  color: var(--clr-light-gray);
}

.stage-info h3{
  margin-bottom: 10px;
  color: var(--clr-gray);
}

/* BENEFITS SECTION */
.benefits-section .container{
  max-width: 500px;
}

.benefits-group{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.benefits-group > img{
  max-width: 380px;
}

.benefits-topics{
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.benefit-item{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item img{
  width: 140px;
}

.benefit-item p{
  text-align: justify;
  color: var(--clr-light-gray);
}

/* ABOUT SECTION */
.about-section .container{
  max-width: 500px;
}

.about-group{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.about-group .img-container{
  max-width: 410px;
  position: relative;
}

.about-group .img-container::before{
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  left: -15px;
  bottom: -15px;
  z-index: -10;

  border: 2px solid #cccccc;
}

.market-years {
  margin-top: 60px;
  position: absolute;
  left: 0;
  bottom: -35px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.years {
  display: flex;
  align-items: flex-start;
}

.years h2 {
  font-size: 120px;
  line-height: 0.6;
  color: var(--clr-dark-blue);
}

.years span {
  font-size: 60px;
  font-weight: bold;
  line-height: 0.5;
  color: var(--clr-blue);
}

.market-years p {
  font-size: 20px;
  color: var(--clr-dark-blue);
}

.about-group > p{
  text-align: justify;
  color: var(--clr-light-gray);
}

/* CTA SECTION */
.cta-section{
  background: var(--clr-blue);
}

.cta-section .container{
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cta-section .title-section{
  color: #FFF;
}

.email-form{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contacts-col{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-forms {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-item img {
  width: 22px;
}

.contact-item span {
  font-weight: 600;
  color: #FFF;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a img {
  width: 32px;
}

/* PLANS SECTION */
.main-plans{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.plan-card{
  min-width: 270px;
  max-width: 270px;
  padding: 25px 25px 30px;
  border-radius: 10px;

  position: relative;

  background: var(--clr-dark-blue);
  background-image: url('../img/plan-bg.svg');
  background-repeat: no-repeat;
  background-size: cover;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;

  transition: transform 200ms ease-in-out;
}

.plan-card:hover{
  transform: scale(1.05);
}

.plan-card > *{
  text-align: center;
  color: #FFF;
}

.plan-card h3{
  font-size: 28px;
}

.plan-card img{
  border-radius: 10px;
}

.plan-name span:first-child{
  font-size: 18px;
  margin-bottom: 2px;
  display: block;
}

.plan-card .price{
  margin-bottom: 4px;
  font-size: 40px;
  font-weight: bold;
}

.plan-requirements p{
  font-size: 18px;
  margin-bottom: 4px;
}

.change-plan-style{
  margin-top: 10px;

  display: flex;
  justify-content: center;
  gap: 20px;
}

.change-plan-style button{
  width: 20px;
  height: 20px;
  border-radius: 40px;
  background: #D9D9D9;
}

.change-plan-style button.active{
  background: var(--clr-light-blue);
}

.plan-card .cta{
  padding: 5px 30px;
  border-radius: 30px;

  position: absolute;
  bottom: -20px;

  background: var(--clr-blue);
}


/* FOOTER */

.footer{
    padding: 20px;
    background: var(--clr-dark-blue);
}

.footer p{
  text-align: center;
  color: #FFF;
}

@media screen and (min-width: 768px) {
  section{
    padding: 60px 40px;
  }
  
  .title-section{
    font-size: 32px;
  }

  .hero-section{
    padding: 0 40px 60px 40px;
  }

  .hero-content{
    max-width: unset;
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .hero-title{
    text-align: left;
    font-size: 38px;
  }


  /* STAGES SECTION */
  .stages-section .container{
    max-width: 800px;
  }

  /* BENEFITS SECTION */
  .benefits-section .container{
    max-width: 670px;
  }

  .benefit-item{
    flex-direction: row;
    align-items: center;
  }

  /* ABOUT SECTION */
  .about-section .container{
    max-width: 634px;
  }

  /* CTA SECTION */
  .cta-section{
    background-image: url('../img/waves-bg.svg');
    background-repeat: no-repeat;
    background-position: bottom;
  }

  .cta-section .container{
    max-width: 970px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  /* PLANS SECTION */
  .plans-section .container{
    max-width: 1170px;
  }

  .main-plans{
    padding: 30px 50px 50px;
    overflow-x: scroll;
    flex-direction: row;
    align-items: initial;
  }

  .gradient-wraper{
    position: relative;
  }

  .gradient-wraper::before, .gradient-wraper::after{
    content: '';
    position: absolute;
    width: 150px;
    height: 100%;
    background: linear-gradient(to right, white 0%, rgba(255,255,255,0) 60%);
    z-index: 2;
  }   
  
  .gradient-wraper::before{
    bottom: 0;
    left: 0;
  }
  
  .gradient-wraper::after{
    bottom: 0;
    right: 0;
    transform: rotateZ(180deg);
  }

  /* CONTACT SECTION */

  .form-col{
    max-width: 480px;
  }

  .form-col .title-section{
    text-align: left;
  }

  .form-col .email-form{
    flex-direction: row;
  }
}

@media screen and (min-width: 1000px) {
  section{
    padding: 80px 20px;
  }

  .title-section{
    margin-bottom: 60px;
    font-size: 40px;
  }

  .hero-section{
    padding: 0 20px 80px 20px;
  }

  .hero-content{
    gap: 60px;
  }

  .hero-title{
    font-size: 44px;
  }

  /* STAGES SECTION */
  .stages-section .container{
    max-width: 1200px;
  }

  .stage-item{
    text-align: left;
    align-items: flex-start;
  }

  /* BENEFITS SECTION */
  .benefits-section .container{
    max-width: 1050px;
  }

  .benefits-group{
    flex-direction: row;
  }

  /* ABOUT SECTION */
  .about-section .container{
    max-width: 1050px;
  }

  .about-group{
    flex-direction: row;
    justify-content: center;
  }

  .about-group p{
    max-width: 500px;
    font-size: 18px;
  }  
  
  /* CTA SECTION */
  .cta-section .title-section{
    margin-bottom: 20px;
  }
}