body {
      font-family: 'Lato', sans-serif;
      margin: 0;
      padding: 0;
    }

    header {
      background-color: white;
      padding: 10px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    header img {
      height: 200px;
    }

    main {
      padding: 40px;
    }

    .titulo-verde {
      color: #66bb6a;
    }

    .subtitulo {
      color: black;
      font-weight: bold;
      margin-bottom: 20px;
    }

    .contenedor-subsecciones {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .subseccion {
      width: 300px;
      text-decoration: none;
      color: inherit;
      background-color: #f2f2f2;
      border-radius: 8px;
      overflow: hidden;
      transition: background-color 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .subseccion:hover {
      background-color: #e0e0e0;
    }

    .subseccion img {
      height: 300px;
      width: 300px;
    }

    .contenido-subseccion {
      padding: 20px;
    }

    .contenido-subseccion h3 {
      margin-top: 0;
    }

    /* Botones flotantes */
    .floating-button,
    .whatsapp-float {
      position: fixed;
      width: 60px;
      height: 60px;
      right: 20px;
      color: white;
      border-radius: 50%;
      text-align: center;
      font-size: 26px;
      box-shadow: 2px 2px 5px #999;
      z-index: 100;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: background-color 0.3s;
    }

    .whatsapp-float {
      bottom: 20px;
      background-color: #25d366;
    }

    .whatsapp-float:hover {
      background-color: #1ebe5d;
    }

    .instagram-float {
      bottom: 90px;
      background-color: #C13584;
    }

    .instagram-float:hover {
      background-color: #a7286c;
    }

    .email-float {
      bottom: 160px;
      background-color: #0072C6;
    }

    .email-float:hover {
      background-color: #005a9c;
    }

    /* Tooltips */
    .floating-button::after,
    .whatsapp-float::after {
      content: attr(data-tooltip);
      position: absolute;
      right: 70px;
      background-color: #333;
      color: #fff;
      padding: 6px 10px;
      border-radius: 6px;
      white-space: nowrap;
      font-size: 14px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
      z-index: 101;
    }

    .floating-button:hover::after,
    .whatsapp-float:hover::after {
      opacity: 1;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .main-content {
        flex-direction: column;
        height: auto;
      }

      .image-section {
        position: relative;
        top: 0;
        width: 100%;
        height: auto;
      }

      .image-section img {
        width: 100%;
        height: auto;
        max-height: 300px;
      }

      .content-section {
        width: 100%;
        height: auto;
        overflow: visible;
        padding: 1.5rem;
      }

      .floating-button,
      .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 22px;
        right: 15px;
      }

      .instagram-float {
        bottom: 75px;
      }

      .email-float {
        bottom: 130px;
      }

      .whatsapp-float {
        bottom: 15px;
      }

      .floating-button::after,
      .whatsapp-float::after {
        display: none;
      }
    }