/* Estilos para el contenedor principal */
.main-content-container {
    margin: 0;
    padding: 20px;
    background-color: #f8fafc;
    font-family: 'Segoe UI', system-ui, sans-serif;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

/* Estilos específicos para la sección de tokenización */
#tokenizationSection {
    --primary-green: #27ae60;
    --dark-green: #219653;
    --primary-blue: #2980b9;
    --dark-blue: #1a6ca8;
    --text-dark: #1a3e72;
    --text-medium: #4a5568;
    
    background: white;
    padding: 3rem;
    border-radius: 16px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    width: 100%;
}

#tokenizationSection::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(41, 128, 185, 0.05);
    border-radius: 50%;
    z-index: 0;
}

#tokenizationSection::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: rgba(39, 174, 96, 0.05);
    border-radius: 50%;
    z-index: 0;
}

#tokenizationSection .tokenization-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

#tokenizationSection .tokenization-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: white;
    font-size: 1.5rem;
}

#tokenizationSection .tokenization-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    position: relative;
    padding-bottom: 8px;
}

#tokenizationSection .tokenization-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    border-radius: 3px;
    transition: width 0.3s ease;
}

#tokenizationSection .tokenization-header:hover .tokenization-title::after {
    width: 100px;
}

#tokenizationSection .tokenization-description {
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

#tokenizationSection .tokenization-button-container {
    display: flex;
    justify-content: flex-start;
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
}

#tokenizationSection .tokenization-button {
    display: inline-flex;
    align-items: center;
    padding: 1.2rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.25s cubic-bezier(0.65, 0, 0.35, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    min-width: 180px;
    justify-content: center;
}

#tokenizationSection .tokenization-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(41, 128, 185, 0.3);
}

#tokenizationSection .tokenization-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

#tokenizationSection .tokenization-button:hover::before {
    opacity: 1;
}

#tokenizationSection .button-icon {
    margin-right: 12px;
    font-size: 1.1rem;
}

#tokenizationSection .floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(41, 128, 185, 0.08), rgba(39, 174, 96, 0.08));
    filter: blur(1px);
    z-index: 0;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, 15px) rotate(5deg); }
    50% { transform: translate(-5px, 20px) rotate(-5deg); }
    75% { transform: translate(15px, -10px) rotate(3deg); }
}

@media (max-width: 768px) {
    .main-content-container {
        padding: 15px;
    }
    
    #tokenizationSection {
        padding: 2rem 1.5rem;
        margin: 20px 0;
    }
    
    #tokenizationSection .tokenization-title {
        font-size: 1.6rem;
    }
    
    #tokenizationSection .tokenization-button {
        width: 100%;
        padding: 1rem 1.5rem;
    }
    
    #tokenizationSection .tokenization-description {
        font-size: 1rem;
    }
}