* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    min-height: 100vh;
    background: #fff;
    position: relative;
}

.split-screen {
    display: flex;
    min-height: 100vh;
}

.left-half {
    width: 50%;
    background: #382651;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.right-half {
    width: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.logo {
    width: 75%;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    cursor: pointer;
}

.logo-text {
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.1;
}

.content {
    max-width: 500px;
    color: #382651;
}

.title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: justify;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    background: #382651;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn:hover {
    background: #4d3373;
    transform: translateY(-2px);
}

/* Estilos para los modales */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
}

.modal-content {
    position: relative;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    margin: 2rem auto;
    animation: slideIn 0.3s ease-out;
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.5rem;
    margin: 0.5rem 0;
    border: 1px solid #ddd;
    border-radius: 4px;
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
    .split-screen {
        flex-direction: column;
        min-height: auto;
    }

    .left-half,
    .right-half {
        width: 100%;
        height: auto;
        min-height: 50vh;
        padding: 2rem 1.5rem;
    }

    .logo {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }

    .content {
        margin-bottom: 60px;
        text-align: center;
    }

    .title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .description {
        text-align: center;
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .btn {
        width: 100%;
        padding: 1rem;
    }

    .right-half footer {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 100;
    }

    .right-half footer p {
        font-size: 0.9rem;
    }

    .modal-content {
        width: 90%;
        margin: 1rem auto;
        padding: 1.5rem;
    }
}