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

    body {
      height: 100vh;
      width: 100%;
      background: url("../img/back-home.jpg") no-repeat center center/cover; center/cover;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
        font-family: "Baloo Chettan 2", Arial, sans-serif;
      color: #4d4d4d;
    }

    /* --- CONTENEDOR PRINCIPAL --- */
    .container {
      display: flex;
      flex-direction: column;
      width: 90%;
      max-width: 1000px;
      /*background-color: rgba(0, 0, 0, 0.5);*/
      padding: 2rem;
      border-radius: 1rem;
    }

    /* --- FILA DE COLUMNAS --- */
    .columns {
      display: flex;
      flex-direction: row;
      gap: 2rem;
      justify-content: flex-start;
      margin-bottom: 1.5rem;
      flex-wrap: wrap;
    }

    .column {
      flex: 1;
      min-width: 250px;
      text-align: left;
    }

    h1 {
      margin-bottom: 1zrem;
      font-size: 2.3rem;
		line-height: 1.1;
    }

    p {
      font-size: 1rem;
      line-height: 1.1;
    }

    /* --- BOTÓN PRINCIPAL --- */
    .btn {
      margin-top: 2rem;
		margin-bottom: 2rem;
      padding: 0.20rem 1.5rem;
      background-color: #bbc232;
      color: #fff;
      border: none;
      border-radius: 50px;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;  
		font-family: "Baloo Chettan 2", Arial, sans-serif;
    }

    .btn:hover {
      background-color: #999928;
      transform: scale(1.05);
    }

    /* --- FILA INFERIOR --- */
    .bottom-row {
      width: 100%;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 1rem;
      margin-top: 150px;
      flex-wrap: wrap;
    }

    .bottom-row a {
      text-decoration: none;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 1rem;
      transition: 0.3s;
    }

    .bottom-row a:hover {
      opacity: 0.8;
    }

    /* --- ICONOS ESTILO BOTÓN --- */
    .icon-btn {
   /*   background-color: rgba(255, 255, 255, 0.15);*/
      /*padding: 0.5rem 0.8rem;*/
      border-radius: 50px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: 0.3s;
    }

    .icon-btn:hover {
     /* background-color: rgba(255, 255, 255, 0.3);*/
      transform: scale(1.1);
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 768px) {
      .columns {
        flex-direction: column;
        align-items: flex-start;
		  font-family: "Baloo Chettan 2", Arial, sans-serif;
      }

      .bottom-row {
        justify-content: center;
        text-align: center;
        margin-top: 60px;
		font-family: "Baloo Chettan 2", Arial, sans-serif;
		  width="60%"
      }
    }