<style>
    body {
        margin: 0;
        font-family: Arial, sans-serif;
    }

    .hero {
        margin-top: 15px;
        width: 100%;
        height: 500px;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        opacity: 0;
        animation: fadeIn 2s forwards;
    }

    /* Animación para el fade-in */
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

.stacked-layout {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
}

/* Forzar alineación a la izquierda */
.top-info {
    text-align: left !important;
}

.top-info h1 {
    font-size: 40px;
    font-weight: 500;
    margin: 0;
    font-family: 'Lato', sans-serif;
    text-align: left !important;  /* ← Fuerza la alineación */
    display: block;
}

/* Cliente y subtítulo */
.top-info .client {
    font-size: 25px;
    color: grey;
    margin: 0.5rem 0;
}

.top-info .subtitle {
    font-size: 14px;
    color: grey;
    margin: 0.5rem 0;
}

/* Columnas de texto */
.multi-column-text .column-wrapper {
  column-count: 2;
  column-gap: 4rem;
  text-align: justify;
}

.multi-column-text .column-wrapper p {
  margin: 0;
  font-size: 21px;
  line-height: 30px;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  word-break: break-word;
}

.content-wrapper {
    display: flex;
    padding: 2rem;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: flex-start; /* <-- Esto reemplaza "center" */
}

.left-column, 
.right-column {
        flex: 1;
        font-family: 'Lato', sans-serif;
        opacity: 0;
        transform: translateY(50px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        min-width: 300px;
    }

    .image-section {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        padding: 0 2rem; /* Solo padding lateral */
        margin-bottom: 1rem; /* Espacio uniforme debajo de las imágenes */
    }

    .image-section img {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        margin-bottom: 1rem; /* Espacio uniforme debajo de cada imagen */
        object-fit: cover;
    }

    /* Imágenes de ancho completo */
    .image-section.full-width img {
        width: 100%;
        margin-bottom: 1rem; /* Espacio uniforme */
    }

    .image-section.full-width iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
        border: none;
        margin-bottom: 1rem;
    }

    /* Imágenes en dos columnas */
    .image-section.two-columns {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .image-section.two-columns img {
        width: calc(50% - 0.5rem);
        height: auto;
        margin-bottom: 1rem; /* Espacio uniforme */
        object-fit: cover;
    }

    .fade-in {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .left-column h1 {
        font-size: 40px;
        font-weight: 500;
        font-family: 'Lato', sans-serif;
        margin: 0;
    }

    .left-column .subtitle {
        font-size: 14px;
        color: grey;
        margin: 0.5rem 0;
    }

    .left-column .client {
        font-size: 25px;
        color: grey;
        margin: 0.5rem 0;
    }

    .right-column p {
        font-size: 24px;
        line-height: 30px;
        font-family: 'Lato', sans-serif;
        font-weight: 400;
    }

 @media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero {
        width: 100%;
        height: 300px;
    }

    .left-column h1 {
        font-size: 40px;
    }

    .right-column p {
        font-size: 18px;
        text-align: left;       /* 👈 Evita huecos grandes */
        hyphens: auto;
    }

    .multi-column-text .column-wrapper {
        column-count: 1;
        text-align: left;       /* 👈 Evita huecos grandes */
    }

    .multi-column-text .column-wrapper p {
        text-align: left;       /* 👈 Evita huecos grandes */
        hyphens: auto;
    }

    .image-section {
        gap: 1rem;
        padding: 0 1rem;
    }

    .image-section.two-columns img {
        width: 100%;
        margin-bottom: 1rem;
    }
}

    /* Responsive para móviles */
    @media (max-width: 480px) {
        .left-column h1 {
            font-size: 30px;
        }

        .right-column p {
            font-size: 16px;
        }

        .image-section {
            gap: 0.5rem;
            padding: 0 1rem; /* Solo padding lateral */
        }

        .image-section img {
            margin-bottom: 1rem; /* Uniforme para todas las imágenes */
        }

        .image-section.two-columns img {
            width: 100%;
            margin-bottom: 1rem; /* Mismo espacio debajo */
        }
    }
</style>
