/* Reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: poppins;
      background-color: #070619;
      color: #fff;
      line-height: 1.6;
    }

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

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

    ul {
      list-style: none;
    }

    /* Header */
    header {
      background-color: #070619;
      padding: 48px 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .logo {
    }
    .menu ul{
      text-align: right;
    }
    .menu li{
      display: inline-block;
    }
    .menu li a{
      padding: 10px 12px;
    }

    .social-icons {
      display: flex;
      gap: 1rem;
    }
    .social-icons a{
      display: inline-block;
      margin: 0 11px 9px 0;
    }
    .social-icons img {
      width: 30px;
      height: 30px;
      fill: #e32636;
      cursor: pointer;
      transition: fill 0.3s ease;
    }

    .social-icons svg:hover {
      fill: #ff4d4d;
    }

    /* Hero Section */
    .hero {
      position: relative;
      background-image: url(img/banner.jpg);
      background-size: cover;
      background-position: center;
      min-height: 539px;
      display: block;
      padding: 90px 0;
    }

    .overlay {
      position: absolute;
      bottom: -30px;
      left: 0;
      width: 100%;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: left;
      width: 1100px;
      margin: 0px auto;
    }
    .hero-content i{
      font-weight: bold;
    }
    .hero h1 {
      font-size: 70px;
      line-height: 81px;
      font-weight: 100;
      margin-bottom: 1rem;
    }

    .hero p {
      font-size: 1.25rem;
      margin-bottom: 2rem;
      max-width: 700px;
    }

    .hero button {
      background-color: transparent;
      color: white;
      padding: 0.75rem 1.5rem;
      border: 3px solid #fff;
      border-radius: 17px;
      font-size: 1rem;
      font-style: italic;
      cursor: pointer;
      letter-spacing: 1px;
      font-weight: bold;
      transition: background-color 0.3s ease;
      float: right;
      margin-right: 30px;
      margin-top: -100px;
    }

    .hero button:hover {
      background-color: #cc202f;
    }

    /* Services Section */
    .services {
      padding: 10px 0;
    }

    .services h2 {
      font-size: 90px;
      text-align: center;
      margin-bottom: 3rem;
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      gap: 3rem;
    }

    .service-card {
      background: linear-gradient(to right, #ff5f2f, #b41859);
      position: relative;
      padding: 2rem;
      border-radius: 42px;
      text-align: center;
      transition: transform 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-5px);
    }

    .service-card img {
      width: 200px;
      height: 200px;
      margin: 0 auto 1rem;
      position: absolute;
      right: 6%;
      top: 5%;
    }

    .service-card h3 {
      font-size: 61px;
      text-align: left;
      font-style: italic;
      margin-top: 60px;
      line-height: 55px;
      margin-bottom: 8px;
    }

    .service-card p {
      color: #ddd;
      text-align: left;
    }

    /* Clients Section */
    .clients {
      padding: 4rem 2rem;
      margin-bottom: -70px;
    }

    .clients h2, .contact h2 {
    font-size: 90px;
    text-align: center;
    margin-bottom: -5px;
    }

    .clients p {
      text-align: center;
      margin-bottom: 2rem;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }


    .client-grid {
      display: block;
      text-align: center;
    }

    .client-logo img {
    vertical-align: top;
    width: 110px;
    display: inline-block;
    }

    /* Contact Section */
    .contact {
      padding: 4rem 2rem;
      background: url(img/decobot.png);
      background-repeat: no-repeat;
      background-size: 37%;
      background-position-x: left;
      background-position-y: bottom;
    }

    .contact-form-container {
      max-width: 1100px;
      margin: 0 auto;
      display: block;
    }

    @media (min-width: 768px) {
      .contact-form-container {
      overflow: hidden;
      }
    }

    .contact-form {
      padding: 2rem;
      border-radius: 10px;
      width: 54%;
      float: right;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      font-family: 'Poppins';
      padding: 0.75rem;
      font-size: 15px;
      margin-bottom: 1rem;
      border: 1px solid #fff;
      border-radius: 19px;
      background-color: #070619;
      color: #fff;
    }

    .contact-form button {
      color: white;
      font-family: 'Poppins';
      width: 170px;
      float: right;
      padding: 0.75rem 1.5rem;
      border: none;
      background: linear-gradient(to right, #ff5f2f, #b41859);
      border-radius: 14px;
      font-size: 1rem;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .contact-form button:hover {
      background-color: #cc202f;
    }

    .contact-image {
      flex: 1;
    }

    .contact-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px;
    }

    /* Footer */
    footer {
      color: #aaa;
      padding: 2rem;
      text-align: center;
      position: relative;
      border-top: 1px solid #fff;
    }

    footer .footer-logo {
      height: 288px;
      margin-bottom: 1rem;
    }

    footer ul {
      display: block;
    }

    footer ul li a {
      color: #aaa;
      transition: color 0.3s ease;
      text-align: left;
      display: block;
    }

    footer ul li a:hover {
      color: #fff;
    }

    @media (max-width: 768px) {
      nav ul {
        flex-direction: column;
        align-items: center;
      }
    }




textarea{
  resize: none;
}



    .center{
      width: 1100px;
      margin: 0 auto;
    }
    .logo{
      display: inline-block;
      vertical-align: top;
      width: 280px;
    }
    nav{
    display: block !important;
}
    .social-icons{
      wi;
      display: block;
      width: 100%;
      text-align: right;
    }
    .second{
      display: inline-block;
      vertical-align: top;
      width: 68%;
      float: right;
      margin-top: 18px;
    }

    nav ul{
      display: block;
      overflow: hidden;
      text-align: right;
    }
    nav ul li{
      display: inline-block;
      margin-left: 30px;
    }
    .client-logo{
      display: inline-block;
      width: 22%;
      text-align: center;
      border: 1px solid #fff;
      padding: 20px 0;
      overflow: hidden;
      border-radius: 20px;
      vertical-align: top;
      margin: 10px 1%;
    }
    .col-footer{
      display: inline-block;
      vertical-align: top;
    }
    .col-footer-menu{
      display: inline-block;
      vertical-align: top;
      margin-top: 90px;
    }
    .col-footer-menu ul li{
      display: block;
    }
    footer h3{
      text-align: left;
    }
    footer .center{
      text-align: left;
    }
    footer .social-icons{
      text-align: left;
    }
    .margen-menubot{
      margin-left: 240px;
    }




.boton-expand-menu{
    position: absolute;
    right: 40px;
    top: 40px;
    color: #fff;
    font-weight: 800;
    display: none;
}
.boton-expand-menu {
    height: 6px;
    background-color: #fff;
    width: 45px;
    border-radius: 4px;
    display: none;
    position: absolute;
    right: 13px;
    top: 88px;
    z-index: 11;
    cursor: pointer;
}
.boton-expand-menu:before {
    height: 6px;
    background-color: #ffffff;
    width: 45px;
    border-radius: 4px;
    display: block;
    position: relative;
    content: '';
    top: -13px;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}

.boton-expand-menu:after {
    height: 6px;
    background-color: #ffffff;
    width: 45px;
    border-radius: 4px;
    display: block;
    position: relative;
    content: '';
    bottom: -7px;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}
.open.boton-expand-menu {
    height: 0;
    z-index: 21;
}
.open.boton-expand-menu:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    top: -2px;
}
.open.boton-expand-menu:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    bottom: 8px;
}


.boton-wsp{
  position: fixed;
  bottom: 80px;
  right: 15px;
  z-index: 42;
}
.boton-wsp img{
  width: 80px;
  vertical-align: top;
}

.ancla-top{
  position: absolute;
  bottom: 13px;
  right: 25px;
  z-index: 42;
}
.ancla-top img{
  width: 60px;
  vertical-align: top;
}

.slicks{
        display: none;
      }
/*RESPONSIVE*/
    @media (max-width: 1100px) {

      .center,
      .hero-content{
        width: 90%;
      }
      .hero-content h1 br{
        display: none;
      }
      .overlay {
        bottom:0;
      }
    }
    @media (max-width: 700px) {
      .service-grid{
        display: block;
      }
      .social-icons a {
    display: inline-block;
    margin: 0 -2px 9px 0;
}
      .service-card{
        margin-bottom: 30px;
      }
      .client-grid{
        display: none;
      }
      .slicks{
        display: block;
      }
      .client-logo{
        width: 44%;
      }
      .contact-form{
        float:none;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
      }
      .contact {
        background-size: 77%;
      }
      .hero h1 {
          font-size: 47px;
          line-height: 45px;
          text-align: center;
      }
      .hero button{
        margin-top: 0;
        float: none;
        margin: 0 auto;
        display: block;
      }
      .services h2,
      .clients h2, .contact h2{
        font-size: 40px;
      }
      .service-card h3 {
          font-size: 40px;
          line-height: 45px;
      }
      .margen-menubot{
        margin-left: 0;
        
      }
      .col-footer{
        display: block;
        margin-bottom: -50px;
        margin-top: -50px;
      }
      .col-footer-menu
      {
        display: block;
        float: none !important;
        margin-top: 30px;
        margin-bottom: 30px;
      }
      footer h3,
      footer ul li a,
      footer .social-icons{
        text-align: center;
      }
      footer .footer-logo{
        margin-left: auto;
        margin-right: auto;
      }
      nav ul{
        float: none;
      }
      .second{
        position: absolute;
        right: 30px;
      }

      .boton-expand-menu{
        display: block;
        right: 6px;
        top: 56px;
    }

      .menu{
        display: none;
        position: absolute;
        background-color: #070619;
      }
      .menu.open{
        display: block;
        z-index: 5;
        right: 2px;
        top: 133px;
        padding: 10px 30px;
        /* border-radius: 0 0 20px 20px; */
      }
      .menu li{
        display: block;
      }
      .menu li a{
        display: block;
        text-align: left;
        padding: 8px 20px;
      }
      .contact-form div{
        display: block !important;
      }
      .logo{
        width: 240px;
        margin-left: -38px;
      }
      .hero p{
        text-align: center;
      }
      .hero{
        padding-top: 50px;
      }
    }