  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Lato', Arial, sans-serif;
  }

  body {
      background: #fff;
      color: #333;
      line-height: 1.5;
  }

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

  /* HEADER */
  .navbar-brand {
      font-weight: bold;
      color: #6c757d !important;
  }

  .navbar-nav .nav-link {
      color: #6c757d !important;
      font-weight: 500;
      margin-right: 1rem;
  }

  .navbar-nav .nav-link:hover {
      color: #495057 !important;
  }

  .btn-donate {
      background-color: #4CAF50;
      border-color: #4CAF50;
      color: white;
      font-weight: 600;
      padding: 0.5rem 1.5rem;
      border-radius: 25px;
  }

  .btn-donate:hover {
      background-color: #7cb342;
      border-color: #7cb342;
      color: white;
  }

  .btn-login {
      color: #6c757d;
      border: none;
      background: transparent;
      font-weight: 500;
  }

  .btn-login:hover {
      color: #495057;
      background: transparent;
  }

  .navbar {
      padding: 1rem 0;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  /*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
  section#hero {
      background: white;
      min-height: 100VH;
      position: relative;
      overflow: hidden;
      padding-top: 74px;
      display: flex;
      align-items: center;
  }

  /* Círculos decorativos */
  .hero::before {
      content: '';
      position: absolute;
      top: 15%;
      left: 15%;
      width: 150px;
      height: 150px;
      background: rgba(186, 242, 178, 0.4);
      border-radius: 50%;
      z-index: 1;
  }

  .hero::after {
      content: '';
      position: absolute;
      bottom: 20%;
      left: 5%;
      width: 100px;
      height: 100px;
      background: rgba(178, 242, 180, 0.3);
      border-radius: 50%;
      z-index: 1;
  }

  /* Círculos adicionales */
  .decorative-circle {
      position: absolute;
      border-radius: 50%;
      z-index: 1;
  }

  .circle-1 {
      top: 25%;
      right: 20%;
      width: 80px;
      height: 80px;
      background: rgba(0, 212, 60, 0.3);
  }

  .circle-2 {
      top: 60%;
      right: 10%;
      width: 60px;
      height: 60px;
      background: rgba(0, 212, 85, 0.2);
  }

  .circle-3 {
      top: 10%;
      right: 35%;
      width: 40px;
      height: 40px;
      background: rgba(0, 212, 78, 0.4);
  }

  /* Puntos pequeños */
  .small-dots {
      position: absolute;
      width: 8px;
      height: 8px;
      background: #37c827;
      border-radius: 50%;
      z-index: 1;
  }

  .dot-1 {
      top: 30%;
      right: 25%;
  }

  .dot-2 {
      top: 50%;
      right: 15%;
  }

  .dot-3 {
      top: 70%;
      right: 30%;
  }

  .dot-4 {
      top: 20%;
      right: 40%;
  }

  .hero-content {
      position: relative;
      z-index: 2;
  }

  .hero h1 {
      font-size: 4.5rem;
      font-weight: bold;
      background: #4CAF50;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 1rem;
      line-height: 1.1;
  }

  .hero h1 .world {
      color: #e91e63;
      font-style: italic;
      font-size: 3.5rem;
      display: block;
  }

  .hero h1 .kindness-day {
      color: #15c031;
      font-weight: 900;
      font-size: 5rem;
  }

  .hero .subtitle {
      color: #2c3e50;
      font-size: 1.8rem;
      font-weight: 600;
      margin-bottom: 1rem;
  }

  .hero .description {
      color: #546e7a;
      font-size: 1.1rem;
      line-height: 1.6;
      margin-bottom: 2rem;
      max-width: 450px;
  }

  .btn-more-info {
      background: linear-gradient(45deg, #2c3e50, #2c3e50);
      color: white;
      border: none;
      padding: 12px 30px;
      border-radius: 25px;
      font-weight: 600;
      text-transform: uppercase;
      transition: all 0.3s ease;
  }

  .btn-more-info:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(30, 233, 101, 0.4);
      background: #4CAF50;
      color: white;
  }

  @media (max-width: 768px) {
      .hero h1 {
          font-size: 3rem;
      }

      .hero h1 .world {
          font-size: 2.5rem;
      }

      .hero h1 .kindness-day {
          font-size: 3rem;
      }

      .hero .subtitle {
          font-size: 1.4rem;
      }

      .hero .description {
          font-size: 1rem;
      }

      .subtitle {
          text-align: center;
      }

      .description {
          text-align: center
      }

      .title {
          text-align: center;
      }

      .actions-cover {
          justify-content: center !important;
      }

      .hero::before {
          z-index: -1;
      }

      .circle-1 {
          display: none;
      }
  }


  /* CARDS */
  .section {
      text-align: center;
      padding: 60px 20px;
  }

  .cards {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 30px;
  }

  .card {
      width: 280px;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: left;
  }

  .card img {
      width: 100%;
      height: 150px;
      object-fit: cover;
  }

  .card-tittle {
      color: #414141;
  }

  .card-content {
      padding: 15px;
  }

  .card-text {
      color: #546e7a;
  }

  .progress-bar {
      height: 6px;
      background: #eee;
      border-radius: 4px;
      margin: 10px 0;
  }

  .progress {
      height: 6px;
      background: #4CAF50;
      border-radius: 4px;
  }

  .btn-card {
      display: block;
      text-align: center;
      padding: 10px;
      background: #2c3e50;
      color: #fff;
      border-radius: 20px;
      margin-top: 10px;
  }

  /* FOOTER */
  footer {
      background: #fafafa;
      padding: 30px;
      text-align: center;
      border-top: 1px solid #eee;
  }

  .footer-links {
      margin: 15px 0;
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
  }

  .social {
      margin-top: 15px;
  }

  .social a {
      margin: 0 10px;
      font-size: 18px;
      color: #555;
  }

  .form-section {
      padding-top: 100px;
  }

  .btn-submit {
      background-color: #4CAF50;
      color: #fff;
      border-radius: 25px;

  }

  .btn-submit:hover {
      background-color: #fff;
      color: #4CAF50;
      border: 1px solid #4CAF50;
  }

  .btn-submit:active {
      background-color: #fff;
      color: #409543 !important;
      border: 1px solid #409543 !important;
  }

  .form-check-input:checked {
      background-color: #4CAF50;
      color: #fff;
  }

  .form-check-input:checked {
      border-color: #409543 !important;
  }

  .form-check-input:focus {
      border-color: #409543;
      outline: 0;
      box-shadow: 0 0 0 .25rem rgb(13 253 67 / 25%);
  }

  .form-check-label>.text-primary {
      color: #2C3E52 !important;
  }

  .fas.text-success.me-2 {
      color: #4CAF50 !important;
  }

  .donate-box {
      background-color: #d4edda;
      color: #4CAF50;
      font-weight: bold;
      font-size: 1.2rem;
      padding: 15px 25px;
      border-radius: 8px;
      display: inline-block;
      text-align: center;
      min-width: 120px;
  }