* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #0a192f;
    color: #fff;
    min-height: 100vh;
}

header {
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-weight: bold;
    font-size: 24px;
    color: #fff;
}

.logo span {
    color: #e63946;
}

.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    width: 60%;
    z-index: 2;
    padding-right: 30px;
}

.hero-subtitle {
    color: #e63946;
    font-size: 22px;
    margin-bottom: 15px;
}

.hero-title {
    font-size: clamp(32px, 5vw, 52px); /* Tamaño responsive */
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    color: #a8b2d1;
    font-size: clamp(16px, 2vw, 18px); /* Tamaño responsive */
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 550px;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #e63946;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    font-size: clamp(14px, 2vw, 16px); /* Tamaño responsive */
}

.cta-button:hover {
    background-color: #c1121f;
}

.profile-image {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    width: min(400px, 30vw); /* Tamaño máximo y relativo */
    height: min(400px, 30vw); /* Tamaño máximo y relativo */
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e63946;
    z-index: 1;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accent-shape {
    position: absolute;
    right: -100px;
    top: 0;
    width: 600px;
    height: 100%;
    background-color: rgba(230, 57, 70, 0.1);
    border-radius: 300px 0 0 300px;
    z-index: 0;
}

/* Media Queries mejoradas */
@media (max-width: 1200px) {
    .hero {
        padding: 50px 40px;
    }
    
    .profile-image {
        right: 40px;
        width: min(350px, 28vw);
        height: min(350px, 28vw);
    }
}

@media (max-width: 1024px) {
    .hero-content {
        width: 55%;
    }
    
    .profile-image {
        width: min(300px, 25vw);
        height: min(300px, 25vw);
        right: 30px;
    }
    
    .hero-title {
        font-size: clamp(28px, 4vw, 36px);
    }
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 80px 30px;
    }
    
    .hero-content {
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .profile-image {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }
    
    .accent-shape {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 20px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .profile-image {
        width: 200px;
        height: 200px;
    }
}