 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background-color: #c4c4eb;
      font-family: "Poppins", Arial, sans-serif;
    }

    header {
      background: linear-gradient(90deg, #f37ad5, #8881e7);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 40px;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    #logo img {
      border-radius: 70%;
      width: 200px;
      height: 100px;
      object-fit: cover;
    }

    #menu ul {
      list-style: none;
      display: flex;
      gap: 30px;
    }

    #menu a {
      text-decoration: none;
      color: #555;
      font-weight: 600;
      font-size: 1rem;
      position: relative;
      transition: color 0.3s ease;
    }

    #menu a::after {
      content: "";
      position: absolute;
      width: 0%;
      height: 2px;
      bottom: -5px;
      left: 0;
      background-color: #d66d87;
      transition: width 0.3s ease;
    }

    main {
      max-width: 1200px;
      margin: 40px auto;
      background-color: white;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    h1 {
      text-align: center;
      margin-bottom: 40px;
      color: #444;
      font-weight: 600;
    }

    /* --- Diseño en tarjetas --- */
    .servicios-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      padding: 20px;
    }

    .servicio {
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      padding: 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
    }

    .servicio:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .servicio img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 15px;
    }

    .servicio h2 {
      color: #7c63f3;
      font-size: 20px;
      margin-bottom: 10px;
    }

    .parrafo {
      font-size: 15px;
      line-height: 1.6;
      color: #555;
    }

    footer {
      background-color: #6b62e2;
      color: white;
      text-align: center;
      padding: 20px;
      margin-top: 40px;
      border-radius: 0 0 10px 10px;
    }

    /* --- Responsive --- */
    @media (max-width: 768px) {
      header {
        flex-direction: column;
      }

      nav ul {
        flex-direction: column;
        align-items: center;
      }

      #logo img {
        width: 100px;
        height: 80px;
      }

      



    }