:root {
    --violeta: #65132a;
    --violeta-oscuro: #a12853;
    --violeta-claro: #e75e8e;
    --rosa: #EC4899;
    --rosa-claro: #F472B6;
    --indigo: #1E1B4B;
    --gris: #4B5563;
    --gris-claro: #9CA3AF;
    --blanco: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.72);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: rgba(0, 0, 0, 0.08);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #F5F3FF 0%, #FDF2F8 50%, #EFF6FF 100%);
    background-attachment: fixed;
    color: var(--indigo);
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.15;
    color: var(--indigo);
}

a {
    color: var(--violeta-oscuro);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--rosa);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.navbar-mpt {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px var(--glass-shadow);
    padding: 0.75rem 0;
}

.navbar-brand-mpt {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--indigo);
    letter-spacing: 0.3px;
}

.navbar-brand-mpt img {
    height: 42px;
    width: auto;
    margin-right: 0.7rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.nav-link-mpt {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gris);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1.1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin: 0 2px;
}

.nav-link-mpt:hover {
    color: var(--violeta-oscuro);
    background: rgba(139, 92, 246, 0.08);
}

.nav-link-mpt i {
    margin-right: 0.35rem;
}

.btn-mpt {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.7rem 1.6rem;
    border-radius: 16px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.25);
}

.btn-mpt-violeta {
    background: linear-gradient(135deg, var(--violeta), var(--violeta-oscuro));
    color: var(--blanco);
}

.btn-mpt-violeta:hover {
    background: linear-gradient(135deg, var(--violeta-oscuro), var(--violeta));
    color: var(--blanco);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.35);
    transform: translateY(-2px);
}

.btn-mpt-outline {
    background: var(--glass);
    color: var(--violeta-oscuro);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px var(--glass-shadow);
}

.btn-mpt-outline:hover {
    background: rgba(139, 92, 246, 0.1);
    color: var(--violeta-oscuro);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.15);
}

main {
    padding-top: 85px;
}

.section-mpt {
    padding: 5rem 0;
    position: relative;
}

.bg-gradient-1 {
    background: linear-gradient(135deg, #F5F3FF 0%, #FDF2F8 100%);
}

.bg-gradient-2 {
    background: linear-gradient(135deg, #FDF2F8 0%, #EFF6FF 100%);
}

.bg-gradient-3 {
    background: linear-gradient(135deg, #EFF6FF 0%, #F5F3FF 100%);
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 8px 32px var(--glass-shadow);
    padding: 2rem;
    transition: all 0.4s ease;
}

.glass-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.3);
}

.label-mpt {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--rosa);
    background: rgba(236, 72, 153, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(236, 72, 153, 0.2);
}

.label-mpt-light {
    color: var(--blanco);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.title-mpt {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: var(--indigo);
}

.title-mpt-light {
    color: var(--blanco);
}

.lead-mpt {
    font-size: 1.15rem;
    color: var(--gris);
    line-height: 1.7;
    font-weight: 400;
}

.text-mpt {
    font-size: 0.98rem;
    color: var(--gris);
    line-height: 1.75;
    margin-bottom: 1.2rem;
}

.text-mpt-light {
    color: rgba(255, 255, 255, 0.9);
}

.divider-mpt {
    height: 4px;
    width: 80px;
    background: linear-gradient(90deg, var(--violeta), var(--rosa));
    border-radius: 4px;
    margin: 1.5rem 0;
}

.divider-wide {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
    margin: 2.5rem 0;
}

.img-mpt {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.img-mpt:hover {
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.2);
    transform: scale(1.02);
}

.aspect-hero {
    aspect-ratio: 16 / 9;
}

.aspect-card {
    aspect-ratio: 4 / 3;
}

.aspect-tall {
    aspect-ratio: 3 / 4;
}

.hero-glass {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-glass::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-glass::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-panel {
    background: var(--glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    box-shadow: 0 8px 32px var(--glass-shadow);
    padding: 3rem;
    position: relative;
    z-index: 2;
}

.meta-mpt {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gris-claro);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.sticky-mpt {
    position: sticky;
    top: 110px;
}

.glass-side {
    background: var(--glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px var(--glass-shadow);
    padding: 1.75rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.glass-side:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.glass-side h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--indigo);
    margin-bottom: 0.5rem;
}

.glass-side p {
    font-size: 0.88rem;
    color: var(--gris);
    margin-bottom: 0;
}

.glass-side i {
    color: var(--violeta);
    margin-right: 0.4rem;
}

.cta-glass {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 8px 32px var(--glass-shadow);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
}

.cta-glass:hover {
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.15);
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.3);
}

.cta-glass i {
    font-size: 2.2rem;
    color: var(--violeta);
    margin-bottom: 1rem;
}

.cta-glass h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.cta-glass p {
    font-size: 0.88rem;
    color: var(--gris);
    margin-bottom: 1.25rem;
}

.footer-mpt {
    background: linear-gradient(135deg, var(--indigo) 0%, #312E81 100%);
    padding: 3rem 0 2.5rem;
    position: relative;
    overflow: hidden;
}

.footer-mpt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--violeta-claro), transparent);
}

.footer-mpt p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.3rem;
}

.footer-mpt .social-link {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--blanco);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    margin: 0 0.3rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.footer-mpt .social-link:hover {
    background: var(--violeta);
    color: var(--blanco);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

@media (max-width: 991px) {
    main {
        padding-top: 78px;
    }
    .section-mpt {
        padding: 3rem 0;
    }
    .hero-panel {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand-mpt {
        font-size: 1.05rem;
    }
    .navbar-brand-mpt img {
        height: 34px;
    }
    .title-mpt {
        font-size: 1.7rem;
    }
    .hero-panel {
        padding: 1.5rem 1rem;
    }
    .glass-card {
        padding: 1.5rem;
    }
}
