    @import url(menu.css);
    
    *{
      box-sizing: border-box;
      padding: 0;
      margin: 0;
    }

    html{
      scroll-behavior: smooth;
      transition: all .5s ease;
    }

    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background: #f9f9f9;
      color: #333;
    }
    header {
      width: 100%;
      height: 50px;
      background: #ff9800;
      color: white;
      padding: 10px;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 100;
      
    }

    .contenedor{
      width: 98%;
      margin: auto;
    }

    header .contenedor{
      display: table;
    }

    header h2{
      float: left;
    }

    .logo{
      width: 200px;
      height: 200px;
      border-radius: 50%;
    }

    nav {
      background: #e68900;
      padding: 10px;
      padding-bottom: 20px;
      
    }

    nav a {
      color: white;
      margin: 0 15px;
      text-decoration: none;
      font-weight: bold;
    }
    nav a:hover {
      text-decoration: underline;
    }

    section {
      padding: 40px 40px;
      max-width: 1000px;
      margin: auto;
    }

    #banner{
      max-width: 100%;
      height: 600px;
      object-fit: cover;
      background: #f34040;
      text-align: center;
      color: #fff;
      padding: 10px;
      padding-top: 100px;
      
    }

    #banner p{
      padding: 20px;
    }

    #banner a{
      text-decoration: none;
      color:#f34040;
      background: #ededed;
      padding: 10px;
      border-radius: 5px;
    }

    #banner a:hover{
       background: #e68900;
      color: #fff;
      transition: all .5 ease;
    }

    a{
       text-decoration: none;
       color: #fff;
    }
    
    .social-icon--link{
      color: #333;
      background: #f9f9f9;
    }

    .social-icon--link a{
      color: #333;
    }

    .title{
      margin-bottom: 20px;
      margin-top: 20px;
    }

    .servicios {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }
    .card {
      background: white;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      text-align: center;
    }
    .card img {
      max-width: 100px;
    }
    footer {
      background: #333;
      color: white;
      text-align: center;
      padding: 15px;
      margin-top: 30px;
    }
  

    @media screen and (min-width: 1024px) {
      .contenedor{
        width: 1000px;
      }
    }