/* Estilo con colores más coherentes */
.page-personas {
    font-family: 'Poppins', sans-serif;
}

.hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="30" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="90" r="2.5" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateX(0px); }
    100% { transform: translateX(-100px); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4em;
    font-weight: 200;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 50%, #2C7DFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3em;
    opacity: 0.9;
    margin-bottom: 40px;
    font-weight: 300;
}

.trust-indicators {
    background: white;
    margin-top: -50px;
    position: relative;
    z-index: 1; /* Reducido de 10 a 1 para evitar conflicto con navbar sticky */
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    padding: 40px;
}

.trust-item {
    text-align: center;
    padding: 20px;
}

.trust-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2C7DFA, #1a1a2e);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2em;
}

.process-visual {
    background: #f8f9fa;
    padding: 100px 0;
    position: relative;
}

.step-card {
    background: white;
    border-radius: 25px;
    padding: 40px 30px;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid #e9ecef;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(44, 125, 250, 0.15);
    border-color: #2C7DFA;
}

.step-badge {
    position: absolute;
    top: -20px;
    left: 30px;
    background: linear-gradient(135deg, #2C7DFA, #1a1a2e);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5em;
    box-shadow: 0 10px 25px rgba(44, 125, 250, 0.3);
}

.step-title {
    margin-top: 20px;
    color: #2d3748;
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 15px;
}

.step-description {
    color: #718096;
    line-height: 1.7;
    font-size: 1em;
}

.commitment-section {
    background: linear-gradient(135deg, #001642 0%, #1a365d 100%);
    color: white;
    padding: 100px 0;
    position: relative;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.commitment-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.commitment-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.commitment-icon {
    font-size: 3.5em;
    margin-bottom: 25px;
    opacity: 0.9;
}

.commitment-title {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.commitment-text {
    opacity: 0.9;
    line-height: 1.6;
    color: white;
}

.credit-showcase {
    padding: 100px 0;
    background: white;
}

.credit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.credit-item {
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.credit-item:hover {
    border-color: #2C7DFA;
    transform: scale(1.05);
}

.credit-item-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2C7DFA, #1a1a2e);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 1.8em;
}

.cta-final {
    background: linear-gradient(135deg, #1a365d 0%, #1a1a2e 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.btn-special {
    background: white;
    color: #2C7DFA;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.btn-special:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    color: #1e93d0;
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5em; }
    .trust-indicators { margin-top: -30px; }
    .step-card { padding: 30px 25px; }
    .commitment-grid { grid-template-columns: 1fr; }
    .credit-grid { grid-template-columns: 1fr; }
    .process-visual { padding: 60px 0; }
}