body {
    font-family: 'Open Sans', sans-serif;
    background: radial-gradient(circle at top, #2a2a35 0%, #111114 100%);
    color: #f0f0f0;
    margin: 0;
    padding: 40px 20px;
    line-height: 1.7;
}
.container {
    max-width: 850px;
    margin: 0 auto;
}
header {
    text-align: center;
    margin-bottom: 30px;
}
h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #E63946;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 10px 0;
    text-shadow: 0 4px 10px rgba(230, 57, 70, 0.3);
}
.subtitle {
    font-size: 1.1rem;
    color: #bbb;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}
.image-container {
    margin: 30px 0;
    text-align: center;
}
img {
    width: 100%;
    max-width: 750px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    border: 2px solid #555;
}
.section { margin-bottom: 30px; }
h2 {
    font-family: 'Montserrat', sans-serif;
    color: #F4A261;
    font-size: 1.6rem;
    border-left: 5px solid #F4A261;
    padding-left: 15px;
    margin-top: 40px;
}
p {
    font-size: 1.1rem;
    text-align: justify;
    margin-bottom: 15px;
}
strong { color: #E63946; }
.highlight-box {
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid #E63946;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}
.highlight-box p {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin: 0;
    line-height: 1.9;
}

/* CSS del nuevo footer elegante */
.elegant-footer {
    background: #16161c;
    border-top: 2px solid #333;
    padding: 50px 0 20px 0;
    margin-top: 60px;
    text-align: center;
}
.footer-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-inner h4 {
    font-family: 'Montserrat', sans-serif;
    color: #F4A261;
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}
.social-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.3s ease;
    border: 1px solid #444;
}
.social-icon:hover {
    transform: translateY(-5px);
    border-color: #F4A261;
}
.icon-email:hover { background-color: #D44638; color: white; }
.icon-x:hover { background-color: #000; color: white; }
.icon-linkedin:hover { background-color: #0077B5; color: white; }
.icon-facebook:hover { background-color: #1877F2; color: white; }

.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.btn-cta {
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}
.btn-cta.orange {
    background-color: #F36F21;
    color: white;
}
.btn-cta.blue {
    background-color: #0a235a;
    color: white;
    border: 1px solid #2a4a9a;
}
.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #888;
}

@media (max-width: 600px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.3rem; }
    .social-icons { gap: 10px; }
}
