/* RESET & BASE */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background-color: #050505; /* Fondo Negro Profundo */
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* UTILITIES */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 100px 0; }
.bg-darker { background-color: #0a0a0a; border-top: 1px solid #1a1a1a; border-bottom: 1px solid #1a1a1a; }
.placeholder-box {
    background-color: #1a1a1a;
    display: flex; align-items: center; justify-content: center;
    color: #444; font-weight: bold; text-transform: uppercase;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 { color: #ffffff; margin-bottom: 0.5rem; font-weight: 700; }
h1 { font-size: 3rem; line-height: 1.1; letter-spacing: -1px; margin-bottom: 1.5rem; }
h2.section-title { font-size: 2.2rem; text-align: center; letter-spacing: -0.5px; }
.section-subtitle { text-align: center; color: #888; margin-bottom: 60px; font-size: 1.1rem; }
.highlight { color: #3b82f6; /* Azul Eléctrico */ }

/* NAVIGATION */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 25px 20px; border-bottom: 1px solid #1a1a1a;
    position: sticky; top: 0; background: rgba(5,5,5,0.95); z-index: 1000;
}
.logo { font-weight: 900; font-size: 1.2rem; letter-spacing: -0.5px; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: 0.9rem; color: #aaa; font-weight: 500; }
.nav-links a:hover { color: #3b82f6; }
.menu-toggle { display: none; cursor: pointer; font-size: 1.5rem; }

/* HERO SECTION */
.hero { padding: 100px 0; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.pill { 
    color: #3b82f6; font-size: 0.75rem; font-weight: 700; letter-spacing: 1px;
    margin-bottom: 15px; display: block; text-transform: uppercase;
}
.main-hero-img { width: 100%; height: 400px; border-radius: 12px; }

/* BUTTONS */
.btn {
    display: inline-block; padding: 14px 28px; border-radius: 6px; 
    font-weight: 600; text-align: center; font-size: 0.95rem;
}
.btn-primary { background-color: #3b82f6; color: white; border: none; }
.btn-primary:hover { background-color: #2563eb; }
.btn-block { display: block; width: 100%; background-color: #e0e0e0; color: #000; margin-top: 20px; }
.btn-block:hover { background-color: #fff; }
.btn-outline { border: 1px solid #444; color: #fff; padding: 10px 20px; }
.btn-outline:hover { border-color: #fff; }
.btn-sm { display: block; width: 100%; background: #333; color: #fff; padding: 10px; border-radius: 4px; font-size: 0.9rem; }
.btn-sm:hover { background: #3b82f6; }
.crypto-link { display: block; text-align: center; font-size: 0.8rem; color: #666; margin-top: 15px; text-decoration: underline; }

/* CARDS GRIDS */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); gap: 30px; }

/* FORMACION CARDS */
.card {
    background: #0f0f0f; border: 1px solid #222; border-radius: 12px; overflow: hidden;
    display: flex; flex-direction: column;
}
.card-img { width: 100%; height: 180px; }
.card-content { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }
.badge { 
    font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; 
    color: #666; margin-bottom: 10px; border: 1px solid #333; display: inline-block; padding: 2px 8px; border-radius: 4px;
}
.highlight-card { border-color: #3b82f6; position: relative; }
.highlight-card::before {
    content: "Recomendado"; position: absolute; top: 0; right: 0;
    background: #3b82f6; color: #fff; font-size: 0.6rem; padding: 3px 8px;
    border-bottom-left-radius: 8px;
}
.features-list { margin: 20px 0; flex-grow: 1; }
.features-list li { margin-bottom: 8px; font-size: 0.9rem; color: #aaa; padding-left: 15px; position: relative; }
.features-list li::before { content: "•"; color: #3b82f6; position: absolute; left: 0; }
.price { font-size: 1.8rem; font-weight: 700; color: #fff; margin-top: auto; }

/* MENTORIA CARDS */
.card-wide {
    background: #0f0f0f; border: 1px solid #222; padding: 40px; border-radius: 12px;
    display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.wide-content h3 { margin-bottom: 10px; }
.wide-action { text-align: right; min-width: 120px; }
.price-big { font-size: 2rem; font-weight: 700; margin-bottom: 15px; }

/* MERCADOS SECTIONS */
.desk-section, .carteras-section { margin-bottom: 80px; }
.desk-header { text-align: center; margin-bottom: 40px; }
.partners-logos { margin-top: 15px; color: #555; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

/* Pricing Desk Privado */
.pricing-desk .card-simple {
    background: #111; padding: 30px; text-align: center; border: 1px solid #222; border-radius: 8px;
}
.pricing-desk .highlight-border { border-color: #3b82f6; }
.price-simple { font-size: 2rem; font-weight: 700; margin: 15px 0 20px; }

/* Carteras Grid */
.risk-box {
    background: #111; padding: 30px; border-radius: 8px; border-top: 4px solid #333;
}
.risk-tag { font-size: 0.7rem; text-transform: uppercase; font-weight: 700; letter-spacing: 1px; margin-bottom: 10px; display: block; }
.risk-tag.low { color: #4ade80; } /* Verde */
.risk-tag.mid { color: #facc15; } /* Amarillo */
.risk-tag.high { color: #f87171; } /* Rojo */

/* ACERCA DE */
.acera-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.profile-img { width: 100%; height: 400px; border-radius: 12px; }
.acerca-text p { margin-bottom: 15px; color: #aaa; }

/* FOOTER */
footer { padding: 40px 0; border-top: 1px solid #1a1a1a; text-align: center; color: #555; }
.disclaimer { font-size: 0.75rem; margin-top: 10px; max-width: 700px; margin-left: auto; margin-right: auto; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-grid, .acera-grid, .card-wide { grid-template-columns: 1fr; text-align: center; display: block; }
    .card-wide { display: block; text-align: center; }
    .wide-action { margin-top: 30px; text-align: center; }
    .hero h1 { font-size: 2.2rem; }
    .nav-links { display: none; } 
    .menu-toggle { display: block; }
    .main-hero-img, .profile-img { margin-top: 30px; height: 250px; }
}

/* Agrega esto al final de style.css para asegurar que las fotos se vean bien */

.main-hero-img {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    object-fit: cover; /* ESTO ES LA CLAVE: Recorta la imagen para que encaje */
}

.card-img {
    width: 100%;
    height: 180px;
    object-fit: cover; /* Evita que se deforme */
}

.profile-img {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    object-fit: cover;
}