﻿
body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
}

/* Colores personalizados */
.bg-emerald {
    background-color: #10b981;
}

.bg-green {
    background-color: #22c55e;
}

.bg-blue {
    background-color: #3b82f6;
}

.bg-purple {
    background-color: #a855f7;
}

.bg-orange {
    background-color: #f97316;
}

.gradient-text {
    background: linear-gradient(to right, #059669, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Timeline Logic */
.timeline-relative {
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 84%;
    background: linear-gradient(to bottom, #34d399, #4ade80, #60a5fa, #c084fc, #fb923c);
    border-radius: 10px;
}

.timeline-row {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px !important;
    height: 60px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Cards */
.card-step {
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.transform-hover:hover {
    transform: scale(1.05);
}

.icon-box {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.bg-white-20 {
    background-color: rgba(255, 255, 255, 0.2);
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.9);
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.7);
}

/* Utils */
.badge-store {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    color: white;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-info {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-banner {
    background: linear-gradient(to right, #10b981, #16a34a);
    color: white;
    padding: 1rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
}

/* Responsividad extra */
@media (max-width: 991.98px) {
    .timeline-row {
        margin-bottom: 2rem;
    }
}
