    /* Estilos base con nuevos degradados */
:root {
    --color-primary: #000000;
    --color-secondary: #D4AF37;
    --color-secondary-light: #FFD700;
    --color-accent: #FFFFFF;
    --color-text: #333333;
    --color-light-gray: #f5f5f5;
    --color-dark-gray: #222222;
    --gradient-gold: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-light));
    --gradient-black-gold: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    --gradient-gold-black: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    margin: 0;
    padding: 0;
    background-color: var(--color-accent);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header con degradado */
header {
    background: var(--gradient-black-gold);
    padding: 20px 0;
    box-shadow: 0 2px 15px rgba(212, 175, 55, 0.3);
}

/* Hero Section con nuevo degradado */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('hero-bg.jpg') no-repeat center center/cover;
    color: var(--color-accent);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-gold);
}

.hero-logo {
    margin-bottom: 30px;
}

.logo-large {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-text {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
}

/* Botones mejorados con degradados */
.cta-button, .submit-button {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--color-primary);
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before, .submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-black-gold);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 30px;
}

.cta-button:hover, .submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.cta-button:hover::before, .submit-button:hover::before {
    opacity: 1;
}

/* Form Section mejorada */
.form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #111111, #1a1a1a);
    color: var(--color-accent);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.7);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-top: 4px solid var(--color-secondary);
    backdrop-filter: blur(5px);
}

.form-container h2 {
    color: var(--color-accent);
    margin-bottom: 15px;
    text-align: center;
    font-size: 2rem;
    position: relative;
    padding-bottom: 15px;
}

.form-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
}

.form-container p {
    text-align: center;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s;
    background: rgba(0, 0, 0, 0.5);
    color: var(--color-accent);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
}

/* Video Section mejorada */
.video-section {
    padding: 100px 0;
    background: var(--gradient-black-gold);
    position: relative;
}

.video-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.video-placeholder {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(212, 175, 55, 0.5);
}

.video-element {
    width: 100%;
    display: block;
    transition: transform 0.3s;
}

.video-element:hover {
    transform: scale(1.02);
}

.video-text {
    flex: 1;
    min-width: 300px;
    color: var(--color-accent);
}

.video-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.video-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
}

.video-text p {
    line-height: 1.8;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Estrategias Section mejorada */
.estrategias {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
}

.estrategias h2 {
    text-align: center;
    color: var(--color-accent);
    margin-bottom: 60px;
    font-size: 2.5rem;
    position: relative;
}

.estrategias h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-gold);
}

.estrategias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.estrategia-card {
    background: rgba(0, 0, 0, 0.7);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.4s ease;
    border-top: 4px solid var(--color-secondary);
    color: var(--color-accent);
    position: relative;
    overflow: hidden;
}

.estrategia-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    transition: all 0.6s ease;
    opacity: 0;
}

.estrategia-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.estrategia-card:hover::before {
    opacity: 1;
    transform: rotate(45deg);
}

.estrategia-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.estrategia-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--color-secondary);
}

.estrategia-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Áreas de Inversión mejoradas */
.areas-inversion {
    padding: 100px 0;
    background: linear-gradient(135deg, #111111, #000000);
}

.areas-inversion h2 {
    text-align: center;
    color: var(--color-accent);
    margin-bottom: 60px;
    font-size: 2.5rem;
    position: relative;
}

.areas-inversion h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-gold);
}

.area-card {
    background: rgba(20, 20, 20, 0.8);
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease;
    border-left: 4px solid var(--color-secondary);
}

.area-card:hover {
    transform: translateY(-5px);
}

.area-header {
    background: var(--gradient-black-gold);
    color: var(--color-accent);
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.area-header i {
    font-size: 1.8rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.area-header h3 {
    margin: 0;
    font-size: 1.4rem;
}

.area-list {
    padding: 30px;
    margin: 0;
    list-style-type: none;
}

.area-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 20px;
}

.area-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-size: 1.5rem;
    line-height: 1;
}

.area-list li:last-child {
    border-bottom: none;
}

.area-list li strong {
    color: var(--color-secondary-light);
    font-weight: bold;
}

/* CTA Final mejorado */
.cta-final {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('cta-bg.jpg') no-repeat center center/cover;
    color: var(--color-accent);
    position: relative;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-gold);
}

.cta-final h2 {
    margin-bottom: 40px;
    font-size: 2.8rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Footer mejorado */
footer {
    background: var(--gradient-black-gold);
    color: var(--color-accent);
    padding: 60px 0 30px;
    text-align: center;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-gold);
}

.footer-logo {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-logo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--color-accent);
}

.footer-logo span {
    display: block;
    line-height: 1.2;
}

.footer-logo .logo-sub {
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--color-accent);
    font-weight: normal;
    text-transform: uppercase;
}

.footer-info p {
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .form-container {
        padding: 30px;
    }
    
    .estrategias h2, .areas-inversion h2 {
        font-size: 2rem;
    }
    
    .cta-final h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .cta-button, .submit-button {
        padding: 12px 25px;
    }
    
    .estrategia-card, .area-card {
        padding: 25px 20px;
    }
}