*{
    margin : 0;
    padding : 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    list-style: none;
}

:root{
    --bg-color: #1d2631;
    --tex-color: #fff;
    --main-color: #34e7f8;
    --other-color: #fcfcfc;
    --h1-font: 4rem;
    --p-font: 1rem;
}

body{
    background-color: #1d2631;
    font-size: 16px;
}

header{
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 8%;
}

.logo  {
    display: flex;
    align-items: center;
    color: var(--tex-color);
    font-size: 28px;
    font-weight: bold;
}

.logo i {
    color: var(--main-color);
    font-size: 32px;
    margin-right: 5px;
}

.navigation {
    display: flex;
}

.navigation a{
    color: var(--other-color);
    font-size: var(--p-font);
    font-weight: 500;
    margin: 0 30px;
    transition: a .55s ease;
}

.navigation a:hover{
    color: var(--main-color);
}

.header-icons{
    display: flex;
    align-items: center;
}

#menu {
    font-size: 35px;
    color: var(--tex-color);
    z-index: 10001;
    cursor: pointer;
    display: none;
}

.header-icons i{
    margin-right: 25px;
    font-size: 28px;
    cursor: pointer;
    transition: all .5s ease;
    color: var(--tex-color);
}

.header-icons i:hover{
    transform: translate(-5px);
    color: var(--main-color);
}

.home {
    position: relative;
    height: 100vh;
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 2fr;
    align-items: center;
    gap: 2rem;
}

.home-text h1{
    font-size: var(--h1-font);
    line-height: 1.2;
    margin-bottom: 2px;
    color: var(--tex-color);
}

.home-text h5 {
    color: #ffffff99;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 60px;
}

.home-text h3{
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 35px;
    color: var(--tex-color);
}

.home-img img{
    max-width: 100%;
    width: 28rem;
    height: auto;
    margin-left: 25%;
}

.btn{
    display: inline-block;
    padding: 15px 70px;
    font-size: 16px;
    font-weight: 500;
    background: transparent;
    border: solid 2px var(--tex-color);
    transition: all.55 ease; 
    color: #fff;
}

.btn:hover{
    background: var(--tex-color);
    border: 2px solid var(--tex-color);
    color: #000;
}

.main{
    position: absolute;
    top: 30%;
    left: 7%;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.main li img{
    width: 50px;
    height: auto;
    max-width: 100%;
}

.row{
    background: var(--main-color);
    height: 70px;
    width: 70px;
    border-radius: 50%;
    justify-content: center;
    transition: all .55s ease;
    cursor: pointer;
    display: inline-flex;
}

.row:hover{
    transform:translate(-8px);
}

.row2{
    background: #ff758d;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .55s ease;
    cursor: pointer;
}

.row2:hover{
    transform:translate(-8px);
}

.row3{
    background: #ffd06d;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .55s ease;
    cursor: pointer;
}

.row3:hover{
    transform:translate(-8px);
}

footer {
    text-align: center;
    color: #fff;
}

/* Tablets */
@media (max-width: 768px) {
  header {
    padding: 20px 5%;
  }

  .navigation {
    gap: 10px;
    margin-left: 10px;
  }

  .home {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 100px;
  }

  .home-img img {
    margin: 0 auto;
    width: 20rem;
  }

  .main {
    position: static;
    transform: none;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .btn {
    padding: 12px 40px;
    font-size: 14px;
  }
}

/* Celulares */
@media (max-width: 480px) {
  .logo {
    font-size: 22px;
  }

  .navigation {
    display: none;
    position: absolute;
    top: 80px;
    right: 8%;
    background: #1d2631;
    flex-direction: column;
    width: 200px;
    border-radius: 8px;
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  }

  .navigation a {
    margin: 10px 0;
    font-size: 14px;
    text-align: center;
  }

  #menu {
    display: block;
  }

  .home-text h1 {
    font-size: 2rem;
  }

  .home-text h3 {
    font-size: 24px;
  }

  .home-img img {
    width: 16rem;
  }

  .btn {
    width: 50%;
    padding: 5px 0;
    
    text-align: center;
  }

  .main {
    gap: 1rem;
  }

  .row, .row2, .row3 {
    height: 50px;
    width: 50px;
  }

  .main li img {
    width: 35px;
  }
}


