.whoint-builder-layout { max-width: 1200px; margin: 0 auto; padding: 20px; }

.whoint-widget { margin-bottom: 30px; }

/* Texto */
.whoint-text { color: #333; line-height: 1.6; margin: 0 0 15px 0; }
.whoint-text h2, .whoint-text h3, .whoint-text h4 { color: #00205C; margin-bottom: 15px; }
.whoint-align-left { text-align: left; }
.whoint-align-center { text-align: center; }
.whoint-align-right { text-align: right; }

/* Imagen */
.whoint-image-wrap { margin-bottom: 15px; }
.whoint-image { max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

/* Botón */
.whoint-button-wrap { margin-bottom: 15px; }
.whoint-button {
    display: inline-block;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s;
    border: 2px solid transparent;
}
.whoint-button-primary {
    background: #FFB81C;
    color: #00205C;
}
.whoint-button-primary:hover {
    background: #FFA500;
    transform: translateY(-2px);
}
.whoint-button-secondary {
    background: #009CDE;
    color: #fff;
}
.whoint-button-secondary:hover {
    background: #00205C;
    transform: translateY(-2px);
}
.whoint-button-outline {
    background: transparent;
    color: #009CDE;
    border-color: #009CDE;
}
.whoint-button-outline:hover {
    background: #009CDE;
    color: #fff;
}