/* style.css - Sistema premium Aivra Digital */

html {
    scroll-behavior: smooth;
}

::selection {
    background: rgba(22, 163, 74, 0.3); /* Premium green selection, soft transparency */
    color: inherit;
}

::-moz-selection {
    background: rgba(22, 163, 74, 0.3);
    color: inherit;
}

body {
    background-color: var(--light);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    letter-spacing: -0.01em;
}

body::before,
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

img {
    max-width: 100%;
}

h1, h2, h3, h4, h5, .navbar-brand {
    margin: 0;
    color: var(--text);
    font-family: 'Sora', sans-serif;
    letter-spacing: -0.05em;
}

p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
}

.homepage-shell,
main {
    position: relative;
}

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

.section-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: min(1160px, calc(100% - 2rem));
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
}

.section-kicker::before {
    content: '';
    width: 44px;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 230, 118, 0), rgba(0, 230, 118, 1));
}

.section-heading {
    max-width: 760px;
    margin-bottom: 2.2rem;
}

.section-heading h2 {
    margin-top: 1rem;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.03;
}

.section-heading p {
    margin-top: 1rem;
    font-size: 1.02rem;
    line-height: 1.75;
}

.split-heading {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
}

.split-heading > p {
    max-width: 460px;
}

.btn-primary-custom,
.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 56px;
    padding: 0.95rem 1.5rem;
    border-radius: 18px;
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), background var(--transition-normal), border-color var(--transition-normal);
}

.btn-primary-custom {
    color: #ffffff;
    border: none;
    background: var(--gradient-green);
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.25);
}

.btn-primary-custom:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(22, 163, 74, 0.35);
}

.btn-outline-custom {
    color: var(--text);
    border: 1px solid var(--border-light);
    background: var(--light);
    box-shadow: var(--shadow-sm);
}

.btn-outline-custom:hover {
    color: var(--primary);
    transform: translateY(-2px);
    background: var(--light-bg);
    border-color: rgba(22, 163, 74, 0.4);
    box-shadow: var(--shadow-md);
}

.text-primary-custom {
    color: var(--primary) !important;
}

.navbar-custom {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0,0,0,0.02);
    margin-top: 1.5rem;
    transition: all var(--transition-normal);
}

.navbar-custom.scrolled {
    margin-top: 0.5rem;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.25rem;
    font-weight: 800;
}

.navbar-custom .nav-link {
    color: var(--text-muted) !important;
    font-weight: 600;
    padding-inline: 0.95rem !important;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--primary) !important;
}

.dropdown-mega {
    position: static !important; /* Allow megamenu to be full width relative to container */
}

@media (min-width: 992px) {
    .navbar-custom .dropdown-menu {
        display: none !important;
    }
    
    .navbar-custom .dropdown:hover > .dropdown-menu {
        display: block !important;
        animation: fadeUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    
    .megamenu {
        width: 100%;
        max-width: 960px;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
}

@keyframes fadeUp {
    from { opacity: 0; margin-top: 2rem; }
    to { opacity: 1; margin-top: 1.5rem; }
}

.dropdown-menu {
    margin-top: 1.5rem;
    padding: 1.5rem;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0,0,0,0.02);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 1050;
}

/* Puente invisible para evitar que el menú desaparezca al mover el ratón */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 0;
    width: 100%;
    height: 2rem;
    background: transparent;
}

.menu-group {
    height: 100%;
    padding: 1.25rem;
    border-radius: 18px;
    border: 1px solid transparent;
    background: rgba(0, 0, 0, 0.02);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.menu-group:hover {
    background: rgba(22, 163, 74, 0.03);
    border-color: rgba(22, 163, 74, 0.15);
}

.megamenu-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(0, 230, 118, 0.08);
    border: 1px solid rgba(0, 230, 118, 0.15);
    font-size: 1.15rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-group:hover .megamenu-icon-box {
    background: rgba(0, 230, 118, 0.15);
    border-color: rgba(0, 230, 118, 0.3);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.15);
}

.menu-group-title {
    display: flex;
    margin-bottom: 1.25rem;
    color: var(--text);
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.megamenu-title-text {
    line-height: 1.2;
}

.dropdown-item {
    padding: 0.75rem 1rem;
    margin-bottom: 0.35rem;
    color: var(--text-muted);
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.dropdown-item:hover, .dropdown-item:focus {
    color: var(--primary);
    background: rgba(22, 163, 74, 0.08);
    transform: translateX(4px);
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 8.6rem 0 4.2rem;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 112px 112px;
    mask-image: radial-gradient(circle at 48% 22%, black 28%, transparent 76%);
    opacity: 0.55;
}

.hero-title {
    max-width: 10.5ch;
    margin-top: 1rem;
    font-size: clamp(2.8rem, 7vw, 5.8rem);
    line-height: 0.93;
}

.hero-copy,
.page-hero-copy {
    max-width: 680px;
    margin-top: 1.2rem;
    font-size: 1.04rem;
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin: 1.9rem 0 0;
}

.aivra-meaning-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.aivra-meaning-item,
.proof-card,
.pain-card,
.solution-feature,
.process-card,
.project-card,
.info-card,
.service-card,
.timeline-card,
.contact-box,
.identity-card,
.cta-shell,
.stage-panel,
.signal-band-inner,
.founder-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.018) 100%);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-md);
}

.aivra-meaning-item::before,
.proof-card::before,
.pain-card::before,
.solution-feature::before,
.process-card::before,
.project-card::before,
.info-card::before,
.service-card::before,
.timeline-card::before,
.contact-box::before,
.identity-card::before,
.cta-shell::before,
.signal-band-inner::before,
.founder-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.08), transparent 40%, rgba(0, 174, 239, 0.05));
    pointer-events: none;
}

.aivra-meaning-item {
    border-radius: 18px;
    padding: 0.95rem 0.8rem;
    text-align: center;
}

.aivra-meaning-item strong {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--primary);
    font-size: 1.32rem;
}

.aivra-meaning-item span {
    position: relative;
    color: rgba(243, 255, 251, 0.8);
    font-size: 0.86rem;
}

.hero-proof {
    margin-top: 1.4rem;
}

.proof-card {
    height: 100%;
    padding: 1.25rem;
    border-radius: 20px;
}

.proof-card strong {
    position: relative;
    display: block;
    margin-bottom: 0.45rem;
    color: var(--light);
    font-size: 1rem;
}

.proof-card p {
    position: relative;
    font-size: 0.93rem;
    line-height: 1.65;
}

.hero-stage {
    position: relative;
    min-height: 580px;
}

.stage-orbit {
    position: absolute;
    inset: 0;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.stage-orbit-a {
    inset: 0.8rem 0.8rem 4rem;
}

.stage-orbit-b {
    inset: 2rem 2rem 6rem;
    border-color: rgba(0, 174, 239, 0.08);
}

.stage-panel {
    border-radius: 28px;
}

.panel-primary {
    position: absolute;
    inset: 4rem 0 7rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg), var(--glow-blue);
}

.panel-label,
.eyebrow-pill,
.project-category,
.timeline-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.78rem;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.panel-label,
.eyebrow-pill {
    color: var(--secondary);
    background: rgba(0, 174, 239, 0.12);
}

.panel-primary h2 {
    margin-top: 1rem;
    font-size: 2.1rem;
    line-height: 1.06;
}

.panel-list {
    list-style: none;
    padding: 0;
    margin: 1.4rem 0 0;
    display: grid;
    gap: 0.95rem;
}

.panel-list li {
    position: relative;
    padding-left: 1.2rem;
    color: rgba(243, 255, 251, 0.85);
}

.panel-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 8px rgba(0, 230, 118, 0.1);
}

.panel-floating {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    width: min(290px, 100%);
    padding: 1rem 1.05rem;
    border-radius: 20px;
}

.panel-floating-top {
    top: 0.25rem;
    right: -0.2rem;
    box-shadow: var(--shadow-sm), var(--glow-green);
    animation: float-panel 6s ease-in-out infinite;
}

.panel-floating-bottom {
    bottom: 0.9rem;
    left: 0;
    box-shadow: var(--shadow-sm), var(--glow-blue);
    animation: float-panel 7s ease-in-out infinite reverse;
}

.pill-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 9px rgba(0, 230, 118, 0.12);
}

.small-metric {
    padding: 0.55rem 0.7rem;
    border-radius: 14px;
    color: var(--light);
    font-size: 0.83rem;
    font-weight: 800;
    background: rgba(0, 174, 239, 0.12);
}

.signal-band {
    padding-bottom: 1.8rem;
}

.signal-band-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.4rem 1.5rem;
    border-radius: 24px;
}

.signal-band-inner p {
    max-width: 690px;
    color: rgba(243, 255, 251, 0.86);
}

.signal-tags,
.chip-row,
.tag-cloud,
.contact-actions,
.identity-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.signal-tags span,
.chip-row span,
.tag-cloud span,
.identity-meta span {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--light);
    font-size: 0.87rem;
}

.pain-card,
.process-card,
.service-card,
.project-card,
.timeline-card,
.info-card,
.contact-box {
    height: 100%;
    padding: 1.55rem;
    border-radius: 22px;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.pain-card:hover,
.process-card:hover,
.service-card:hover,
.project-card:hover,
.solution-feature:hover,
.timeline-card:hover,
.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 230, 118, 0.18);
    box-shadow: var(--shadow-lg);
}

.pain-index,
.process-card span:first-child {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.18), rgba(0, 174, 239, 0.12));
    color: var(--primary);
    font-weight: 800;
}

.pain-card h3,
.process-card h3,
.service-card h3,
.project-card h3,
.timeline-card h3,
.info-card h3 {
    position: relative;
    margin-bottom: 0.75rem;
    font-size: 1.28rem;
    line-height: 1.15;
}

.pain-card p,
.process-card p,
.service-card p,
.project-card p,
.timeline-card p,
.info-card p {
    position: relative;
    line-height: 1.72;
}

.solutions-layout {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1rem;
}

.solution-feature {
    display: flex;
    gap: 1rem;
    min-height: 220px;
    padding: 1.55rem;
    border-radius: 24px;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.solution-feature:nth-child(1) {
    grid-column: span 6;
}

.solution-feature:nth-child(2) {
    grid-column: span 6;
}

.solution-feature:nth-child(3),
.solution-feature:nth-child(4),
.solution-feature:nth-child(5) {
    grid-column: span 4;
}

.solution-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.35rem;
    height: 3.35rem;
    border-radius: 18px;
    background: var(--gradient-primary);
    color: #03130e;
    font-size: 1.2rem;
    flex: 0 0 auto;
    box-shadow: 0 14px 28px rgba(0, 174, 239, 0.16);
}

.page-hero {
    padding: 8rem 0 3rem;
}

.metric-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.75rem;
}

.metric-box {
    padding: 1.25rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.metric-box strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--light);
    font-size: 1.45rem;
    font-family: 'Sora', sans-serif;
}

.category-block {
    margin-top: 2.8rem;
}

.category-block h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.service-card i,
.founder-badge {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 3.35rem;
    height: 3.35rem;
    margin-bottom: 1rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.18), rgba(0, 174, 239, 0.18));
    color: var(--light);
}

.service-benefit {
    margin-top: 1rem;
    color: rgba(243, 255, 251, 0.92);
}

.timeline-meta {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.timeline-meta span,
.project-category {
    color: var(--secondary);
    background: rgba(0, 174, 239, 0.12);
}

.founder-card {
    display: grid;
    grid-template-columns: 144px 1fr;
    gap: 1.8rem;
    align-items: center;
    padding: 2rem;
    border-radius: 28px;
}

.founder-badge {
    width: 144px;
    height: 144px;
    margin-bottom: 0;
    font-size: 2.4rem;
}

.founder-copy h2 {
    margin-top: 0.9rem;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.02;
}

.founder-copy p {
    margin-top: 1rem;
    max-width: 760px;
    line-height: 1.8;
}

.project-card-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.project-mark {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gradient-primary);
    box-shadow: 0 0 0 8px rgba(0, 174, 239, 0.12);
}

.project-result-label {
    margin-top: 1.5rem;
    margin-bottom: 0.3rem;
    color: rgba(243, 255, 251, 0.5);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cta-shell {
    padding: 2.6rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow-lg), var(--glow-blue);
}

.cta-shell h2 {
    position: relative;
    max-width: 15ch;
    margin: 1rem auto 0;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 0.98;
}

.cta-shell p {
    position: relative;
    max-width: 740px;
    margin: 1rem auto 0;
    font-size: 1rem;
    line-height: 1.85;
}

.list-clean {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.8rem;
}

.list-clean li {
    position: relative;
    padding-left: 1.1rem;
    color: rgba(243, 255, 251, 0.84);
}

.list-clean li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.63rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
}

.profile-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1rem;
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1rem;
    align-items: stretch;
}

.contact-hero-main,
.contact-primary-card,
.faq-card,
.contact-channel-card,
.trust-mini-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.018) 100%);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-md);
}

.contact-hero-main,
.contact-primary-card {
    padding: 1.6rem;
    border-radius: 24px;
}

.contact-checklist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.4rem;
}

.contact-checklist span {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 0.95rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(243, 255, 251, 0.86);
    font-size: 0.92rem;
}

.contact-checklist i {
    color: var(--primary);
}

.contact-primary-card h3,
.faq-card h3,
.contact-channel-card h3 {
    position: relative;
    margin-top: 1rem;
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
}

.contact-trust-band {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.8rem;
}

.trust-mini-card {
    padding: 1rem;
    border-radius: 18px;
    text-align: center;
}

.trust-mini-card strong {
    display: block;
    color: var(--light);
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.trust-mini-card span {
    color: rgba(243, 255, 251, 0.72);
    font-size: 0.84rem;
    line-height: 1.45;
}

.faq-stack {
    display: grid;
    gap: 0.8rem;
}

.faq-card {
    padding: 1.15rem 1.2rem;
    border-radius: 18px;
}

.faq-card h3 {
    margin-top: 0;
    font-size: 1.05rem;
}

.faq-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.contact-channel-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.contact-channel-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 22px;
    transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.contact-channel-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 230, 118, 0.18);
    box-shadow: var(--shadow-lg), var(--glow-blue);
}

.contact-channel-top {
    display: flex;
    align-items: start;
    gap: 0.9rem;
}

.contact-channel-top i {
    width: 3rem;
    height: 3rem;
    display: inline-grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.18), rgba(0, 174, 239, 0.18));
    color: var(--light);
    flex: 0 0 auto;
}

.contact-channel-top p {
    font-size: 0.9rem;
}

.contact-channel-card strong {
    color: var(--light);
    font-size: 1rem;
    line-height: 1.45;
}

.contact-channel-secondary {
    color: rgba(243, 255, 251, 0.66);
    font-size: 0.88rem;
    margin-top: -0.5rem;
}

.identity-card {
    padding: 1.6rem;
    border-radius: 24px;
}

.contact-box strong {
    position: relative;
    display: block;
    margin-bottom: 0.3rem;
    color: var(--light);
}

.contact-box a {
    color: rgba(243, 255, 251, 0.86);
    word-break: break-word;
}

.status-note {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    border: 1px solid rgba(0, 174, 239, 0.14);
    background: rgba(0, 174, 239, 0.08);
    color: #8adfff;
}

/* --- PRE-FOOTER CTA PREMIUM --- */
.footer-cta-premium {
    position: relative;
    padding: 4rem 0;
    background: var(--dark-panel);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.footer-cta-premium::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
}

.footer-cta-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 50vw; height: 50vw;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.08) 0%, transparent 60%);
    z-index: 0;
}

.footer-cta-premium h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.footer-cta-premium p {
    font-size: 1.1rem;
    color: rgba(243, 255, 251, 0.7);
    margin-bottom: 0;
}

/* --- FOOTER MAIN PREMIUM --- */
.footer-premium {
    position: relative;
    padding: 4rem 0 1.5rem;
    background: var(--dark);
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--light);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.footer-brand:hover {
    color: var(--light);
}

.footer-desc {
    color: rgba(243, 255, 251, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-badges span {
    font-size: 0.85rem;
    color: rgba(243, 255, 251, 0.8);
    font-weight: 500;
}

.footer-heading {
    color: var(--light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.footer-links, .footer-contact-links, .footer-social-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links a, .footer-contact-links a {
    color: rgba(243, 255, 251, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover, .footer-contact-links a:hover {
    color: var(--primary);
    transform: translateX(3px);
}

.footer-contact-links i {
    width: 20px;
    text-align: center;
    color: var(--primary);
}

.footer-social-links {
    gap: 1rem;
}

.footer-social-links a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(243, 255, 251, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.footer-social-links a i {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-social-links a:hover {
    background: rgba(0, 230, 118, 0.05);
    border-color: rgba(0, 230, 118, 0.2);
    color: var(--light);
}

.footer-social-links a:hover i {
    color: var(--primary);
}

/* --- FOOTER BOTTOM --- */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: rgba(243, 255, 251, 0.4);
}

.footer-bottom p {
    margin: 0;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float-panel {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* --- NUEVOS ESTILOS NOSOTROS CORPORATIVO --- */
.methodology-timeline {
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid rgba(0, 230, 118, 0.2);
}

.method-step {
    position: relative;
    padding-bottom: 2.5rem;
    padding-left: 2rem;
}

.step-num {
    position: absolute;
    left: -3.3rem;
    top: 0;
    width: 2.6rem;
    height: 2.6rem;
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.18), rgba(0, 174, 239, 0.18));
    border: 1px solid rgba(0, 230, 118, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.15);
}

.step-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    color: var(--primary);
}

.industry-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.industry-card:hover {
    background: rgba(0, 174, 239, 0.05);
    border-color: rgba(0, 174, 239, 0.2);
    transform: translateY(-5px);
}

.industry-card i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.compact-founder {
    grid-template-columns: 100px 1fr !important;
    padding: 1.5rem !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.compact-founder .founder-badge {
    width: 100px;
    height: 100px;
    font-size: 2rem;
}

.compact-founder .founder-copy h2 {
    font-size: 1.8rem;
    margin-top: 0.5rem;
}

.credential-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(0,230,118,0.02) 100%);
    border: 1px solid rgba(0, 230, 118, 0.15);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.credential-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 230, 118, 0.4);
    box-shadow: 0 15px 40px rgba(0, 230, 118, 0.15);
}

.credential-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge-blockchain {
    background: rgba(0, 230, 118, 0.15);
    color: var(--primary);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid rgba(0, 230, 118, 0.3);
}

.badge-openbadges {
    background: rgba(0, 174, 239, 0.15);
    color: var(--secondary);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.credential-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.institution {
    color: rgba(243, 255, 251, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.credential-details p {
    font-size: 0.85rem;
    color: rgba(243, 255, 251, 0.8);
}

.skills-tags span {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-size: 0.8rem;
    margin-right: 0.4rem;
    margin-bottom: 0.4rem;
    color: rgba(243, 255, 251, 0.9);
}

.timeline-container {
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    padding-left: 2rem;
    margin-left: 1rem;
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.35rem;
    top: 0.3rem;
    width: 12px;
    height: 12px;
    background: var(--secondary);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.15);
}

.timeline-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
    color: var(--light);
}

.timeline-item p {
    font-size: 0.95rem;
    color: rgba(243, 255, 251, 0.7);
}

.custom-accordion .accordion-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.custom-accordion .accordion-button {
    background: transparent;
    color: var(--light);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: rgba(0, 230, 118, 0.05);
    color: var(--primary);
}

.custom-accordion .accordion-button::after {
    filter: invert(1);
}

.custom-accordion .accordion-body {
    padding: 0 1.5rem 1.5rem;
    color: rgba(243, 255, 251, 0.8);
    line-height: 1.7;
}
