/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Contenedor general */
.container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 5%;
    gap: 40px;
}

/* Columnas */
.text-column {
    flex: 1 1 400px;
}

.image-column {
    flex: 1 1 500px;
}

.image-column img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Estilos de texto */
.subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #555;
    margin-bottom: 10px;
}

.title {
    font-size: 36px;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #222;
}

.description {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 25px;
}

/* Botón */
.btn-primary {
    display: inline-block;
    text-decoration: none;
    background-color: #6C63FF;
    color: #fff;
    padding: 12px 25px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #574fd6;
}

/* Sección */
.hero-section {
    background-color: #f4f6f2;
}

/* Responsivo */
@media (max-width: 900px) {
    .container {
        flex-direction: column-reverse;
        padding: 40px 5%;
    }

    .text-column, .image-column {
        flex: 1 1 100%;
    }

    .title {
        font-size: 28px;
    }
}