/* --- ESTILO MINIMALISTA BLACK & WHITE --- */
:root {
    --bg-color: #0a0a0a;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;
    --accent: #ffffff;
    --accent-muted: #e0e0e0;
    --text-white: #ffffff;
    --text-gray: #888888;
    --border-color: #222222;
    --border-light: #333333;
    --font-main: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-white);
    font-family: var(--font-main);
    line-height: 1.7;
    font-weight: 300;
}

h1, h2, h3, h4 {
    font-family: var(--font-main);
    color: var(--text-white);
    font-weight: 700;
    letter-spacing: -0.5px;
}

p {
    color: var(--text-gray);
    font-size: 1rem;
}

strong {
    color: var(--text-white);
    font-weight: 600;
}

/* --- HEADER & NAV --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    min-height: 240px;
    background: rgba(10, 10, 10, 0.95);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    height: 200px;
    width: auto;
    display: block;
}

.btn-outline {
    border: 1px solid var(--border-light);
    color: var(--text-white);
    padding: 10px 25px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 6px;
    background: transparent;
}

.btn-outline:hover {
    background: var(--text-white);
    color: var(--bg-color);
}

.btn-premium {
    border: none;
    background: var(--text-white);
    color: var(--bg-color);
    padding: 10px 25px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 6px;
    cursor: pointer;
}

.btn-premium:hover {
    background: var(--accent-muted);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.85)), url('https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    padding-top: 240px;
}



.hero-content {
    max-width: 900px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 700;
}

.hero h1 span {
    color: var(--text-gray);
}

.subtitle {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    margin-bottom: 30px;
    display: block;
    color: var(--text-gray);
    font-weight: 500;
}

.hero-description {
    color: #bbb;
    font-weight: 400;
    font-size: 1.1rem;
    margin-top: 20px;
}

/* --- SECCIONES GENERALES --- */
section {
    padding: 100px 10%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 70px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--text-white);
    margin: 20px auto 0;
}

/* --- LA ESENCIA --- */
.essence-section {
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.intro-text {
    font-size: 1.4rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-weight: 300;
    color: #ccc;
}

.intro-text strong {
    color: var(--text-white);
    font-weight: 600;
}

/* --- OBJETIVOS SECTION --- */
.objectives-section {
    background: #ffffff;
}

.objectives-section .section-title {
    color: #0a0a0a;
}

.objectives-section .section-title::after {
    background: #0a0a0a;
}

.objectives-section .card {
    background: #f5f5f5;
    border-color: #e0e0e0;
}

.objectives-section .card:hover {
    background: #ffffff;
    border-color: #0a0a0a;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.objectives-section .card h3 {
    color: #0a0a0a;
}

.objectives-section .card p {
    color: #555;
}

.objectives-section .card-num {
    color: rgba(0, 0, 0, 0.05);
}

/* --- OBJETIVOS (GRID) --- */
.grid-5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.card {
    background: var(--bg-card);
    padding: 40px 30px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--border-light);
    background: var(--bg-card-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.card-num {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.card h3 {
    font-size: 1.1rem;
    margin-top: 10px;
    margin-bottom: 15px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- SPLIT SECTION (MOTIVACIONES) --- */
.split {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}

.split-img {
    flex: 1;
    min-width: 400px;
    min-height: 600px;
    background: url('https://images.unsplash.com/photo-1559339352-11d035aa65de?ixlib=rb-1.2.1&auto=format&fit=crop&w=1000&q=80');
    background-size: cover;
    background-position: center;
}

.split-text {
    flex: 1;
    padding: 100px 8%;
    background: #0c0c0c;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text h2 {
    margin-bottom: 40px;
    font-size: 2.2rem;
}

.split-block {
    margin-bottom: 30px;
}

.split-block h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* --- PRICING SECTION --- */
.pricing-section {
    background: linear-gradient(180deg, #f8f8f8 0%, #eeeeee 100%);
}

.pricing-section .section-title {
    color: #0a0a0a;
}

.pricing-section .section-title::after {
    background: #0a0a0a;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #0a0a0a;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: #0a0a0a;
    background: #0a0a0a;
}

.pricing-card.featured .pricing-tier,
.pricing-card.featured .pricing-price,
.pricing-card.featured .pricing-description,
.pricing-card.featured .pricing-features li {
    color: #ffffff;
}

.pricing-card.featured .pricing-features li.disabled {
    color: #555;
}

.pricing-card.featured .pricing-features li i {
    color: #ffffff;
}

.pricing-card.featured .pricing-features li.disabled i {
    color: #444;
}

.pricing-card.featured .pricing-features li {
    border-bottom-color: #222;
}

.pricing-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--text-white);
    color: var(--bg-color);
    padding: 5px 40px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    transform: rotate(45deg);
}

.pricing-tier {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 10px;
    line-height: 1;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #888;
}

.pricing-description {
    color: #666;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #444;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: #0a0a0a;
    font-size: 0.8rem;
}

.pricing-features li.disabled {
    color: #bbb;
}

.pricing-features li.disabled i {
    color: #ccc;
}

.btn-pricing {
    display: inline-block;
    width: 100%;
    padding: 15px 30px;
    border: 1px solid #0a0a0a;
    background: transparent;
    color: #0a0a0a;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-pricing:hover {
    background: #0a0a0a;
    color: #ffffff;
}

.pricing-card.featured .btn-pricing {
    background: #ffffff;
    color: #0a0a0a;
    border-color: #ffffff;
}

.pricing-card.featured .btn-pricing:hover {
    background: transparent;
    color: #ffffff;
}

/* --- ACCIONES (LISTA) --- */
.actions-list {
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
}

.actions-list li {
    padding: 25px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.actions-list li:hover {
    background: var(--bg-card-hover);
    padding-left: 35px;
}

.actions-list li i {
    color: var(--text-white);
    margin-right: 25px;
    font-size: 1.2rem;
    opacity: 0.7;
}

.actions-list li p {
    margin: 0;
    color: #ddd;
    font-weight: 400;
}

/* --- FOOTER --- */
footer {
    background: #050505;
    padding: 80px 5%;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.partners {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.partner-name {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
    padding: 12px 25px;
    border-radius: 6px;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.partner-name:hover {
    border-color: var(--border-light);
    color: var(--text-white);
}

.footer-copy {
    font-size: 0.85rem;
    color: #444;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    nav {
        padding: 15px 5%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        position: relative;
        background: var(--bg-color);
    }
    
    .logo {
        position: relative;
        left: auto;
        transform: none;
        order: -1;
        width: 100%;
        text-align: center;
    }
    
    .logo img {
        margin: 0 auto;
    }
    
    .btn-outline,
    .btn-premium {
        flex: 1;
        text-align: center;
        padding: 12px 15px;
    }
    
    section {
        padding: 60px 5%;
    }
    
    .split-img {
        min-width: 100%;
        min-height: 300px;
    }
    
    .pricing-card {
        padding: 40px 30px;
    }
    
    .pricing-price {
        font-size: 2.5rem;
    }
}
